carmakerexecwork.h 668 B

123456789101112131415161718192021222324252627
  1. #ifndef CARMAKEREXECWORK_H
  2. #define CARMAKEREXECWORK_H
  3. #include <QtCore/qglobal.h>
  4. #include <memory>
  5. #include <string>
  6. #if defined(CARMAKEREXECWORK_LIBRARY)
  7. # define CARMAKEREXECWORKSHARED_EXPORT Q_DECL_EXPORT
  8. #else
  9. # define CARMAKEREXECWORKSHARED_EXPORT Q_DECL_IMPORT
  10. #endif
  11. int ExecCarmakerWork(int64_t workid,std::string strInputName, std::string strOutputName, std::string strcmd,
  12. std::shared_ptr<char> pinput_ptr,int ninputsize,
  13. std::shared_ptr<char> & poutput_ptr,int noutputsize);
  14. //class CARMAKEREXECWORKSHARED_EXPORT Carmakerexecwork
  15. //{
  16. //public:
  17. // Carmakerexecwork();
  18. //};
  19. #endif // CARMAKEREXECWORK_H