1 //------------------------------------------------------------------------------ 2 // LocalCommon.h 3 // 4 //------------------------------------------------------------------------------ 5 6 #ifndef LOCALCOMMON_H 7 #define LOCALCOMMON_H 8 9 // Standard Includes ----------------------------------------------------------- 10 #include <string> 11 12 // System Includes ------------------------------------------------------------- 13 #include <Archivable.h> 14 15 // Project Includes ------------------------------------------------------------ 16 #include <TestCase.h> 17 #include <TestUtils.h> 18 19 // Local Includes -------------------------------------------------------------- 20 #include "common.h" 21 22 // Local Defines --------------------------------------------------------------- 23 24 // Globals --------------------------------------------------------------------- 25 extern const char* gInvalidClassName; 26 extern const char* gInvalidSig; 27 extern const char* gLocalClassName; 28 extern const char* gLocalSig; 29 extern const char* gRemoteClassName; 30 extern const char* gRemoteSig; 31 extern const char* gValidSig; 32 33 34 #endif //LOCALCOMMON_H 35 36 /* 37 * $Log $ 38 * 39 * $Id $ 40 * 41 */ 42 43 44 45