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 ---------------------------------------------------------------------
25extern const char* gInvalidClassName;
26extern const char* gInvalidSig;
27extern const char* gLocalClassName;
28extern const char* gLocalSig;
29extern const char* gRemoteClassName;
30extern const char* gRemoteSig;
31extern const char* gValidSig;
32
33
34#endif	//LOCALCOMMON_H
35
36/*
37 * $Log $
38 *
39 * $Id  $
40 *
41 */
42
43
44
45