source: trunk/greenorg/lib/cnfgable.h@ 13640

Last change on this file since 13640 was 5503, checked in by sjboddie, 21 years ago

* empty log message *

  • Property svn:keywords set to Author Date Id Revision
File size: 292 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 (text_t filename);
12 protected:
13 configurable() {}
14};
15
16#endif
Note: See TracBrowser for help on using the repository browser.