DYT/Source/src/ui/Matlab/MatlabObject.h

19 lines
256 B
C
Raw Normal View History

2024-11-22 15:11:48 +00:00
#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);
};