You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
416 B
22 lines
416 B
14 years ago
|
#ifndef XBEELINKINTERFACE_H_
|
||
|
#define XBEELINKINTERFACE_H_
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QString>
|
||
|
#include <LinkInterface.h>
|
||
|
|
||
|
class XbeeLinkInterface : public LinkInterface
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
virtual QString getPortName() = 0;
|
||
|
virtual int getBaudRate() = 0;
|
||
|
|
||
|
public slots:
|
||
|
virtual bool setPortName(QString portName) = 0;
|
||
|
virtual bool setBaudRate(int rate) = 0;
|
||
|
};
|
||
|
|
||
|
#endif // XBEELINKINTERFACE_H_
|