source: main/tags/2.35a/gsdl/lib/cnfgator.h@ 33178

Last change on this file since 33178 was 1896, checked in by sjboddie, 23 years ago

* empty log message *

  • Property svn:keywords set to Author Date Id Revision
File size: 365 bytes
Line 
1#if defined(GSDL_USE_OBJECTSPACE)
2# include <ospace/std/vector>
3#else
4# include <vector>
5#endif
6
7#include "cfgread.h"
8#include "cnfgable.h"
9
10class configurator
11{
12 private:
13 vector<configurable *> configureobjs;
14 public:
15 configurator(configurable *configureobject);
16 bool configure(text_t filename);
17 void add_configurable(configurable *configureobject);
18};
Note: See TracBrowser for help on using the repository browser.