##// END OF EJS Templates
timecodes added to the spw plugin
timecodes added to the spw plugin

File last commit:

r38:6939a908c25c Patch 2 from Paul on spwplugin default
r38:6939a908c25c Patch 2 from Paul on spwplugin default
Show More
spwpywrapper.h
35 lines | 1.1 KiB | text/x-c | CLexer
#ifndef SPWPYWRAPPER_H
#define SPWPYWRAPPER_H
#include <genericPySysdriver.h>
class spwPyWrapper : public genericPySysdriver
{
Q_OBJECT
public:
explicit spwPyWrapper(socexplorerplugin *parent = 0);
signals:
void selectBridge(const QString &bridgeName);
bool connectBridge();
bool disconnectBridge();
void StarDundeeSelectBrick(int brickIndex);
void StarDundeeSelectLinkNumber(int linkIndex);
void StarDundeeSelectLinkSpeed(int linkSpeed);
void StarDundeeSetSourceAddress(const QString & destKey);
void StarDundeeSetDestinationAddress(const QString & address);
void StarDundeeSetDestinationKey(const QString & key);
void StarDundeeSetRmapTimeout(const QString & timeout);
int StarDundeeGetAvailableBrickCount();
void StarDundeeSetBrickAsAninterface( bool );
void StarDundeeSetBrickAsARouter( bool );
void StarDundeeSetTimecodeFrequency( double );
void StarDundeeStartTimecodes( bool );
void TCPServerConnect();
void TCPServerDisconnect();
void TCPServerSetPort(qint32 port);
void TCPServerSetIP(QString ip);
public slots:
};
#endif // SPWPYWRAPPER_H