blob: dbdec004cfccf76194b64351434245e0e51b7a01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// **********************************************************************
//
// Copyright (c) 2003-2005 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#ifndef TEST_APPLICATION_H
#define TEST_APPLICATION_H
#include <IceUtil/Config.h>
#include <Ice/Ice.h>
//
// XXX: For ICE_TEST_COMMON_API. We could create a TestConfig.h later, or
// perhaps make Test/... subdirectory.
//
#include <TestCommon.h>
class ICE_TEST_COMMON_API TestApplication
{
public:
#ifdef _WIN32_WCE
int main(HINSTANCE);
#else
int main(int, char*[]);
#endif
virtual int run(int, char*[]) = 0;
void setCommunicator(const Ice::CommunicatorPtr&);
Ice::CommunicatorPtr communicator();
private:
Ice::CommunicatorPtr _communicator;
};
#endif
|