19 lines
273 B
C++
19 lines
273 B
C++
#ifndef VINCECONTROL_H
|
|
#define VINCECONTROL_H
|
|
|
|
#include "vincecontrol_global.h"
|
|
#include "QString"
|
|
|
|
class VINCECONTROL_EXPORT VinceControl
|
|
{
|
|
public:
|
|
VinceControl();
|
|
~VinceControl();
|
|
void connect(QString comname,QString bandrate);
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif // VINCECONTROL_H
|