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..2b701a238 --- /dev/null +++ b/kcontrol/css/template.h @@ -0,0 +1,21 @@ +#ifndef __TEMPLATE_H__ +#define __TEMPLATE_H__ + + +#include <qstring.h> +#include <qmap.h> + +class CSSTemplate +{ +public: + + CSSTemplate(QString fname) : _filename(fname) {}; + bool expand(QString destname, const QMap<QString,QString> &dict); + +protected: + QString _filename; + +}; + + +#endif |