QsProcess.h 235 B

1234567891011121314
  1. #pragma once
  2. #include <string>
  3. #include <vector>
  4. #include <Kaguya/kaguya.hpp>
  5. class QsProcess
  6. {
  7. public:
  8. QsProcess();
  9. ~QsProcess();
  10. static void regist(kaguya::State& T);
  11. private:
  12. static bool create(const std::string& filepath);
  13. };