filters
option.h00001
00002 #ifndef __LATEXPARSER_OPTION_H__
00003 #define __LATEXPARSER_OPTION_H__
00004
00005 #include <qstring.h>
00006
00007 class Option
00008 {
00009 public:
00010 Option() { }
00011
00012 ~Option() { }
00013
00014 QString getKey() const { return _key; }
00015
00016 QString getValue() const { return _value; }
00017
00018 void setKey(QString key) { _key = key; }
00019
00020 void setValue(QString value) { _value = value; }
00021
00022 private:
00023 QString _key;
00024 QString _value;
00025 };
00026
00027 #endif
|