wait_task.h 209 B

12345678910111213141516
  1. #ifndef __TASK_GENERAL_WAIT_TASK_H__
  2. #define __TASK_GENERAL_WAIT_TASK_H__
  3. #include <std_lib/std_lib.h>
  4. #include <string>
  5. namespace task {
  6. bool wait_task(Json::Value task, std::string commond);
  7. }
  8. #endif