#pragma once #include class MatlabObject : public QObject { Q_OBJECT public: MatlabObject(QObject *parent); ~MatlabObject(); void RunMatlabFile(const QString& strFile); protected: std::u16string string2u16string(std::string& str); };