diff options
Diffstat (limited to 'kcontrol/css/template.h')
-rw-r--r-- | kcontrol/css/template.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/kcontrol/css/template.h b/kcontrol/css/template.h new file mode 100644 index 000000000..bdcc8ad63 --- /dev/null +++ b/kcontrol/css/template.h @@ -0,0 +1,21 @@ +#ifndef __TEMPLATE_H__ +#define __TEMPLATE_H__ + + +#include <tqstring.h> +#include <tqmap.h> + +class CSSTemplate +{ +public: + + CSSTemplate(TQString fname) : _filename(fname) {}; + bool expand(TQString destname, const TQMap<TQString,TQString> &dict); + +protected: + TQString _filename; + +}; + + +#endif |