12345678910111213141516171819202122232425 |
- /**
- *
- * gsd_UserApp.cc
- *
- */
- #include "gsd_UserApp.h"
- using namespace drogon;
- using namespace gsd;
- using namespace toolkit;
- using namespace std;
- void UserApp::initAndStart(const Json::Value &config)
- {
- /// Initialize and start the plugin
- InfoL << "gsd_check Start a Task, version: " << app().getPlugin<CenterGroup>()->getVersion() << ", Engine: " << app().getPlugin<CenterGroup>()->getInferEngine()
- << ", Debug: " << app().getPlugin<CenterGroup>()->getDebug();
- }
- void UserApp::shutdown()
- {
- /// Shutdown the plugin
- InfoL;
- }
|