1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 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