19 lines
256 B
C
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);
|
||
|
};
|