|
|
@ -1,6 +1,8 @@ |
|
|
|
#include "debug_page_test_service.hpp"
|
|
|
|
using namespace iflytop; |
|
|
|
void DebugPageTestService::initialize() { |
|
|
|
REG_EXTFN(test_int, int(json), param0); |
|
|
|
REG_EXTFN(test_int, int(SettingId), param0); |
|
|
|
REG_EXTFN(test_int, int(int), param0); |
|
|
|
REG_EXTFN(test_string, void(string), param0); |
|
|
|
REG_EXTFN(test_float, void(float), param0); |
|
|
@ -11,9 +13,10 @@ void DebugPageTestService::initialize() { |
|
|
|
REG_EXTFN(test_vector_double, void(vector<double>), param0); |
|
|
|
REG_EXTFN(test_vecto_json, void(vector<json>), param0); |
|
|
|
REG_EXTFN(test_vecto_bool, void(vector<bool>), param0); |
|
|
|
REG_EXTFN(test_vecto_enum, void(SettingId), param0); |
|
|
|
// REG_EXTFN(test_vecto_enum, void(vector<SettingId>), param0);
|
|
|
|
} |
|
|
|
|
|
|
|
void DebugPageTestService::test_json(shared_ptr<MsgProcessContext> cxt, json param0) {} |
|
|
|
void DebugPageTestService::test_enum(shared_ptr<MsgProcessContext> cxt, SettingId param0) {} |
|
|
|
void DebugPageTestService::test_int(shared_ptr<MsgProcessContext> cxt, int param0) {} |
|
|
|
void DebugPageTestService::test_string(shared_ptr<MsgProcessContext> cxt, string param0) {} |
|
|
|
void DebugPageTestService::test_float(shared_ptr<MsgProcessContext> cxt, float param0) {} |
|
|
@ -24,4 +27,4 @@ void DebugPageTestService::test_vector_string(shared_ptr<MsgProcessContext> cxt, |
|
|
|
void DebugPageTestService::test_vector_double(shared_ptr<MsgProcessContext> cxt, vector<double> param0) {} |
|
|
|
void DebugPageTestService::test_vecto_json(shared_ptr<MsgProcessContext> cxt, vector<json> param0) {} |
|
|
|
void DebugPageTestService::test_vecto_bool(shared_ptr<MsgProcessContext> cxt, vector<bool> param0) {} |
|
|
|
void DebugPageTestService::test_vecto_enum(shared_ptr<MsgProcessContext> cxt, SettingId param0) {} |
|
|
|
void DebugPageTestService::test_vecto_enum(shared_ptr<MsgProcessContext> cxt, vector<SettingId> param0) {} |