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.
tdebase/kcontrol/css/template.h

22 lines
283 B

#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