source: branches/corba/gsdl/lib/cnfgable.h@ 13242

Last change on this file since 13242 was 1068, checked in by cs025, 24 years ago

First corba additions: new files

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