#ifndef CONFIGURABLE_H #define CONFIGURABLE_H #include "text_t.h" class configurable { public: virtual void configure (const text_t &key, const text_tarray &cfgline) = 0; virtual ~configurable () {} bool read_configfile (text_t filename); protected: configurable() {} }; #endif