You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koffice/filters/kword/latex/import/parser/option.h

28 lines
430 B

#ifndef __LATEXPARSER_OPTION_H__
#define __LATEXPARSER_OPTION_H__
#include <tqstring.h>
class Option
{
public:
Option() { }
~Option() { }
TQString getKey() const { return _key; }
TQString getValue() const { return _value; }
void setKey(TQString key) { _key = key; }
void setValue(TQString value) { _value = value; }
private:
TQString _key;
TQString _value;
};
#endif /* __LATEXPARSER_OPTION_H__ */