正在显示
1 个修改的文件
包含
28 行增加
和
0 行删除
src/server/dmpserverplugins.h
0 → 100644
1 | +/************************************************************************** | ||
2 | +* file: dmpserverplugins.h | ||
3 | + | ||
4 | +* Author: wanzhongping | ||
5 | +* Date: 2021-03-12 16:50:26 | ||
6 | +* Email: zhongpingw@chinadci.com | ||
7 | +* copyright: 广州城市信息研究所有限公司 | ||
8 | +***************************************************************************/ | ||
9 | + | ||
10 | +#ifndef __dmpserverplugins_h__ | ||
11 | +#define __dmpserverplugins_h__ | ||
12 | + | ||
13 | + | ||
14 | +#include "dmpserverinterface.h" | ||
15 | +#include <vector> | ||
16 | +#include "python/dmppythonutils.h" | ||
17 | +//class DmpPythonUtils; | ||
18 | + | ||
19 | +class SERVER_EXPORT DmpServerPlugins | ||
20 | +{ | ||
21 | + public: | ||
22 | + explicit DmpServerPlugins() = default; | ||
23 | + static bool InitPlugins( DmpServerInterface *interface ); | ||
24 | + static std::vector<std::string> &ServerPlugins(); | ||
25 | + static std::shared_ptr<DmpPythonUtils> sp_python_utils_; | ||
26 | +}; | ||
27 | + | ||
28 | +#endif //__dmpserverplugins_h__ |
请
注册
或
登录
后发表评论