##// END OF EJS Templates
rmapplugin updated, waveform plots removed (exported in gse_lesia)...
rmapplugin updated, waveform plots removed (exported in gse_lesia) echo bridge function added, packet sent to gse-lesia via tcp/ip

File last commit:

r24:52cca9b26092 default
r25:361dd727106d default
Show More
lfrxmlparser.h
27 lines | 584 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);
signals:
void sendMessage(QString);
void sendPacket(TMPacketToRead *incomingPacket);
public slots:
private:
QString xmlBuffer;
};
#endif // LFRXMLPARSER_H