zcancmder_v2
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
416 B

2 years ago
  1. #pragma once
  2. #include <map>
  3. #include "api/api.hpp"
  4. #include "api/i_cmdparser.hpp"
  5. #include "cmdid.hpp"
  6. #include "zmodule_device_manager.hpp"
  7. namespace iflytop {
  8. class ZModuleDeviceScriptCmderPaser {
  9. private:
  10. ICmdParser* m_cmdParser = nullptr;
  11. ZModuleDeviceManager* m_deviceManager;
  12. public:
  13. void initialize(ICmdParser* cancmder, ZModuleDeviceManager* deviceManager);
  14. };
  15. } // namespace iflytop