提交 24ce2ddd169461a800992d9e295f64664ae717c9

作者 LJH 李佳桓
1 个父辈 97f52c94

add

正在显示 1 个修改的文件 包含 28 行增加0 行删除
  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__
... ...
注册登录 后发表评论