##// 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
Added stop function to dsu3plugin...
r14 #ifndef SPWPYWRAPPER_H
#define SPWPYWRAPPER_H
#include <genericPySysdriver.h>
class spwPyWrapper : public genericPySysdriver
{
Q_OBJECT
public:
explicit spwPyWrapper(socexplorerplugin *parent = 0);
signals:
Jeandet Alexis
Sync
r15 void selectBridge(const QString &bridgeName);
Added stop function to dsu3plugin...
r14 bool connectBridge();
bool disconnectBridge();
void StarDundeeSelectBrick(int brickIndex);
void StarDundeeSelectLinkNumber(int linkIndex);
void StarDundeeSelectLinkSpeed(int linkSpeed);
paul
timecodes added to the spw plugin
r38 void StarDundeeSetSourceAddress(const QString & destKey);
void StarDundeeSetDestinationAddress(const QString & address);
void StarDundeeSetDestinationKey(const QString & key);
Added stop function to dsu3plugin...
r14 void StarDundeeSetRmapTimeout(const QString & timeout);
paul
Functions added to the Python API:...
r35 int StarDundeeGetAvailableBrickCount();
void StarDundeeSetBrickAsAninterface( bool );
void StarDundeeSetBrickAsARouter( bool );
paul
timecodes added to the spw plugin
r38 void StarDundeeSetTimecodeFrequency( double );
void StarDundeeStartTimecodes( bool );
Jeandet Alexis
Sync
r20
void TCPServerConnect();
void TCPServerDisconnect();
void TCPServerSetPort(qint32 port);
Sync
r21 void TCPServerSetIP(QString ip);
Added stop function to dsu3plugin...
r14 public slots:
};
#endif // SPWPYWRAPPER_H