DYT/Source/src/ui/Matlab/MatlabObject.h
2024-11-22 23:11:48 +08:00

19 lines
256 B
C++

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