123456789101112131415161718192021222324252627 |
- #ifndef CARMAKEREXECWORK_H
- #define CARMAKEREXECWORK_H
- #include <QtCore/qglobal.h>
- #include <memory>
- #include <string>
- #if defined(CARMAKEREXECWORK_LIBRARY)
- # define CARMAKEREXECWORKSHARED_EXPORT Q_DECL_EXPORT
- #else
- # define CARMAKEREXECWORKSHARED_EXPORT Q_DECL_IMPORT
- #endif
- int ExecCarmakerWork(int64_t workid,std::string strInputName, std::string strOutputName, std::string strcmd,
- std::shared_ptr<char> pinput_ptr,int ninputsize,
- std::shared_ptr<char> & poutput_ptr,int noutputsize);
- //class CARMAKEREXECWORKSHARED_EXPORT Carmakerexecwork
- //{
- //public:
- // Carmakerexecwork();
- //};
- #endif // CARMAKEREXECWORK_H
|