Browse Source

update

storage-in-realtime
zhaohe 12 months ago
parent
commit
adb1d82fd0
  1. 17
      appsrc/baseservice/front_msg_processer/front_msg_processer.cpp
  2. 9
      appsrc/service/app_core.cpp

17
appsrc/baseservice/front_msg_processer/front_msg_processer.cpp

@ -14,7 +14,22 @@ using namespace iflytop;
// }
// }
void FrontMsgProcesser::initialize() {}
void FrontMsgProcesser::initialize() {
REG_TYPE(string);
REG_TYPE(void(void));
REG_TYPE(int);
REG_TYPE(int32_t);
REG_TYPE(float);
REG_TYPE(double);
REG_TYPE(void);
REG_TYPE(json);
REG_TYPE(vector<string>);
REG_TYPE(vector<int>);
REG_TYPE(vector<float>);
REG_TYPE(vector<double>);
REG_TYPE(vector<int32_t>);
REG_TYPE(vector<json>);
}
json FrontMsgProcesser::geFnList() {
json rely;
json fnlist;

9
appsrc/service/app_core.cpp

@ -31,14 +31,7 @@ void AppCore::dosystem(string order, bool dump) {
}
void AppCore::initialize() {
REG_TYPE(string);
REG_TYPE(void(void));
REG_TYPE(int);
REG_TYPE(int32_t);
REG_TYPE(float);
REG_TYPE(double);
REG_TYPE(void);
REG_TYPE(json);
// FrontEnd
BUILD_AND_REG_SERRVICE(IflytopFrontEndService);

Loading…
Cancel
Save