##// 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:

r46:47a6c68a9cf9 default
r55:4ea52012da18 default
Show More
lfractions.h
29 lines | 614 B | text/x-c | CLexer
#ifndef LFRACTIONS_H
#define LFRACTIONS_H
#include <QWidget>
#include <QGridLayout>
#include <parameterdump.h>
#include "entermode.h"
class LFRActions : public QWidget
{
Q_OBJECT
public:
explicit LFRActions(QWidget *parent = 0);
QGridLayout *mainLayout;
EnterMode *enterMode;
ParameterDump *parameterDump;
signals:
unsigned int WriteSPWSig(char *Value, unsigned int count, char targetLogicalAddress, char userApplication);
public slots:
void reEmitWriteSPWSig(char *Value, unsigned int count, char targetLogicalAddress, char userApplication);
};
#endif // LFRACTIONS_H