##// END OF EJS Templates
Function added to the plugin to store packets in CSV format.
Function added to the plugin to store packets in CSV format.

File last commit:

r14:304f5a6ad6b4 default
r55:4ea52012da18 default
Show More
tmpackettoread.h
23 lines | 393 B | text/x-c | CLexer
#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