Changeset 152 for Evidence/Evidence.h
- Timestamp:
- 01/27/10 15:28:06 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Evidence/Evidence.h
r142 r152 4 4 #include <stdio.h> 5 5 #include <stdarg.h> 6 #include <string> 6 7 #include <errno.h> 8 #include <exception> 7 9 8 10 #include "dis.hxx" … … 11 13 #define NO_LINK (char *) "__&DIM&NOLINK&__" // Data if no link available 12 14 #define STATUS_SIZE 1000 // Bytes for status service string 15 16 using namespace std; 13 17 14 18 // Declaration of item for history buffer (see DColl.cc) … … 29 33 unsigned int ConfigNum; 30 34 31 char *StatusName;32 35 DimService *Status; 33 36 34 static void SignalHandler(int); // static needed for signal() function 37 static void SignalHandler(int); // static for signal() 38 static void Terminate(); // static for set_terminate() 35 39 void errorHandler(int, int, char *); 36 40 void exitHandler(int); … … 43 47 44 48 void State(StateType, const char *, ...); 49 char* GetConfig(const char *, const char * = NULL); 50 static char* ToString(DimInfo *); 45 51 46 char* GetConfig(const char *);47 static char *ToString(DimInfo *);48 static int MakeString(char **Pointer, const char *Format, ...);49 50 52 static bool ExitRequest; 51 53 };
Note:
See TracChangeset
for help on using the changeset viewer.