spwpywrapper.h
38 lines
| 1.3 KiB
| text/x-c
|
CLexer
/ spwplugin / spwpywrapper.h
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
|
r15 | void selectBridge(const QString &bridgeName); | ||
r14 | bool connectBridge(); | |||
bool disconnectBridge(); | ||||
void StarDundeeSelectBrick(int brickIndex); | ||||
void StarDundeeSelectLinkNumber(int linkIndex); | ||||
void StarDundeeSelectLinkSpeed(int linkSpeed); | ||||
paul
|
r38 | void StarDundeeSetSourceAddress(const QString & destKey); | ||
void StarDundeeSetDestinationAddress(const QString & address); | ||||
void StarDundeeSetDestinationKey(const QString & key); | ||||
r14 | void StarDundeeSetRmapTimeout(const QString & timeout); | |||
paul
|
r35 | int StarDundeeGetAvailableBrickCount(); | ||
paul
|
r40 | unsigned int StarDundeeGetNbPacketsTransmittedToSpw( void ); | ||
unsigned int StarDundeeGetNbCCSDSPacketsTransmittedToSpw( void ); | ||||
int StarDundeeGetLinkNumber(); | ||||
paul
|
r35 | void StarDundeeSetBrickAsAninterface( bool ); | ||
void StarDundeeSetBrickAsARouter( bool ); | ||||
paul
|
r38 | void StarDundeeSetTimecodeFrequency( double ); | ||
void StarDundeeStartTimecodes( bool ); | ||||
Jeandet Alexis
|
r20 | |||
void TCPServerConnect(); | ||||
void TCPServerDisconnect(); | ||||
void TCPServerSetPort(qint32 port); | ||||
r21 | void TCPServerSetIP(QString ip); | |||
paul
|
r40 | |||
r14 | public slots: | |||
}; | ||||
#endif // SPWPYWRAPPER_H | ||||