diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2013-03-22 21:48:15 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2013-03-22 21:48:15 +0100 |
commit | 4f00c4c74d213a37a4b1a3313e50ce2b4dd51271 (patch) | |
tree | f692743cb752c994c05fe2761f83af08aa28d239 /ftnoir_protocol_ft/csv.h | |
parent | 5c5ec4b4238996770bfd74ddfc87934ace40bf0f (diff) |
finish rename
Diffstat (limited to 'ftnoir_protocol_ft/csv.h')
-rw-r--r-- | ftnoir_protocol_ft/csv.h | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/ftnoir_protocol_ft/csv.h b/ftnoir_protocol_ft/csv.h deleted file mode 100644 index 13231293..00000000 --- a/ftnoir_protocol_ft/csv.h +++ /dev/null @@ -1,38 +0,0 @@ -/*dummy CSV reader for QT4*/ -/*version 0.1*/ -/*11.1.2009*/ -#ifndef CSV_H -#define CSV_H - -//#include "myclass_api.h" - -#include <QObject> -#include <QStringList> -#include <QIODevice> -#include <QTextCodec> -#include <QRegExp> - -class /*MYCLASS_API*/ CSV /*: public QObject*/ -{ - /*Q_OBJECT*/ - -public: - CSV(QIODevice * device); - CSV(QString &string); - ~CSV(); - - QString readLine(); - QStringList parseLine(); - static QStringList parseLine(QString line); - - void setCodec(const char* codecName); -private: - QIODevice *m_device; - QTextCodec *m_codec; - QString m_string; - int m_pos; - QRegExp m_rx; - -}; - -#endif // CSV_H |