source: gsdl/trunk/common-src/src/lib/cnfgable.h@ 18050

Last change on this file since 18050 was 8727, checked in by kjdon, 19 years ago

added some changes made by Emanuel Dejanu (Simple Words)

  • Property svn:keywords set to Author Date Id Revision
File size: 299 bytes
Line 
1#ifndef CONFIGURABLE_H
2#define CONFIGURABLE_H
3
4#include "text_t.h"
5
6class configurable {
7 public:
8 virtual void configure (const text_t &key, const text_tarray &cfgline) = 0;
9 virtual ~configurable () {}
10
11 bool read_configfile (const text_t &filename);
12 protected:
13 configurable() {}
14};
15
16#endif
Note: See TracBrowser for help on using the repository browser.