##// END OF EJS Templates
title of the dockwidgets removed
title of the dockwidgets removed

File last commit:

r27:237de88e9fa6 default
r40:1049d68df926 default
Show More
lfrxmlparser.h
28 lines | 615 B | text/x-c | CLexer
First version of gse_lesia functional, includung waveform display...
r24 #ifndef LFRXMLPARSER_H
#define LFRXMLPARSER_H
#include <QObject>
#include <tmpackettoread.h>
class LFRXmlParser : public QObject
{
Q_OBJECT
public:
explicit LFRXmlParser(QObject *parent = 0);
void processIncomingStr(QString incomingStr);
int findPattern(QString startStr, QString stopStr, int *indexOfStartStr, int *indexOfStopStr);
void processIncomingData(const QString &ch);
Minor upgrade on rmapplugin...
r27 QList<TMPacketToRead*> *generalCCSDSPacketStore;
First version of gse_lesia functional, includung waveform display...
r24
signals:
void sendMessage(QString);
Minor upgrade on rmapplugin...
r27 void processPacketStore();
First version of gse_lesia functional, includung waveform display...
r24
public slots:
private:
QString xmlBuffer;
};
#endif // LFRXMLPARSER_H