summaryrefslogtreecommitdiffstats
path: root/kcontrol/css/template.h
blob: 2b701a23806634c0ec7a068a42f05c1b90710a22 (plain)
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