##// END OF EJS Templates
First version of the gse-lesia module...
First version of the gse-lesia module Slight changes on the rmapplugin

File last commit:

r14:304f5a6ad6b4 default
r23:23c09fe5a8b6 default
Show More
tmpackettoread.h
23 lines | 393 B | text/x-c | CLexer
Add missing files to the repository
r14 #ifndef TMPACKETTOREAD_H
#define TMPACKETTOREAD_H
#include <QObject>
class TMPacketToRead : public QObject
{
Q_OBJECT
public:
explicit TMPacketToRead(unsigned char *Value, unsigned int size,
QObject *parent = 0);
~TMPacketToRead();
unsigned char *Value;
unsigned int size;
signals:
public slots:
};
#endif // TMPACKETTOREAD_H