##// END OF EJS Templates
python wrapper added to the API...
python wrapper added to the API void StarDundeeSendOneTimecode( unsigned char timecode );

File last commit:

r44:0935da2bcc7f default
r46:54b149031754 default
Show More
dsu3pluginpywrapper.h
23 lines | 483 B | text/x-c | CLexer
#ifndef DSU3PLUGINPYWRAPPER_H
#define DSU3PLUGINPYWRAPPER_H
#include <genericPySysdriver.h>
class dsu3pluginPywrapper : public genericPySysdriver
{
Q_OBJECT
public:
explicit dsu3pluginPywrapper(socexplorerplugin *parent = 0);
signals:
bool openFile(QString fileName);
bool loadFile();
bool run();
bool stop();
bool cacheDisable();
bool cacheEnable();
bool setCacheEnable(bool enabled);
public slots:
};
#endif // DSU3PLUGINPYWRAPPER_H