00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef RTKINPUTXML_H
00021 #define RTKINPUTXML_H
00022
00023 #ifndef RTK_H
00024 #include "rtk.h"
00025 #endif
00026 #include <qxml.h>
00027
00028
00029 namespace RTK
00030 {
00031
00032 class InputXml : public Input
00033 {
00034
00035 public:
00036 InputXml(String name = String(), String driver = String())
00037 :Input(name, driver)
00038
00039 {};
00040
00041 ~InputXml();
00042
00043 virtual bool init();
00044 virtual bool next();
00045 virtual Variant getValue(uint i) const;
00046
00047
00048 public:
00049
00050 private:
00051 int fieldPos(const String &name) const;
00052
00053 QValueList<String>mFieldNames;
00054 QValueList<QVariant::Type>mFieldTypes;
00055
00056 };
00057
00058 };
00059
00060 #endif
00061
00062