12345678910111213141516171819202122232425 |
- /**
- * space_server 对外接口标准功能。
- *
- * © 2020 成都河狸智能科技有限责任公司。保留所有权利。
- *
- * 作者: zhq1229
- */
- #ifndef __TASK_STANDARD_H__
- #define __TASK_STANDARD_H__
- #include <space_lib/space_lib.h>
- namespace task {
- namespace standard {
- int init(Json::Value &conf);
- int shutdown();
- } // namespace standard
- } // namespace task
- #endif // __TASK_STANDARD_H__
|