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