source: trunk/gsdl/lib/cnfgable.h@ 1860

Last change on this file since 1860 was 1860, checked in by cs025, 23 years ago

Included CORBA branch for first time

  • 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.