-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGMServer.h
More file actions
60 lines (49 loc) · 943 Bytes
/
GMServer.h
File metadata and controls
60 lines (49 loc) · 943 Bytes
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#ifndef _GMServer_H_
#define _GMServer_H_
#include <iostream>
#include "servant/Application.h"
#include "OuterFactoryImp.h"
//
using namespace tars;
/**
*
**/
class GMServer : public Application
{
public:
/**
*
**/
virtual ~GMServer() {};
/**
*
**/
virtual void initialize();
/**
*
**/
virtual void destroyApp();
public:
/*
* 配置变更,重新加载配置
*/
bool reloadSvrConfig(const string &command, const string ¶ms, string &result);
public:
/**
* 初始化外部接口对象
**/
int initOuterFactory();
/**
* 取外部接口对象
**/
OuterFactoryImpPtr getOuterFactoryPtr()
{
return _pOuter;
}
private:
OuterFactoryImpPtr _pOuter; //外部接口对象
};
//
extern GMServer g_app;
////////////////////////////////////////////
#endif