##// END OF EJS Templates
Protocole written but not tested yet.
Protocole written but not tested yet.

File last commit:

r3:66fd6489c66a default
r3:66fd6489c66a default
Show More
uprobe.cpp
21 lines | 326 B | text/x-c | CppLexer
#include "uprobe.h"
UProbe::UProbe(QObject *parent) :
QObject(parent)
{
}
bool UProbe::setPortName(const QString &name)
{
/* TODO implement this function */
Q_UNUSED(name)
return false;
}
bool UProbe::setPortSpeed(int speed)
{
/* TODO implement this function */
Q_UNUSED(speed)
return false;
}