openModeller  Version 1.4.0
Configurable.hh
Go to the documentation of this file.
00001 
00030 #ifndef _CONFIGURABLE_HH
00031 #define _CONFIGURABLE_HH
00032 
00033 #include <openmodeller/Configuration.hh>
00034 
00035 class Configurable {
00036 
00037 public:
00038   virtual ~Configurable() {};
00039   virtual ConfigurationPtr getConfiguration() const = 0;
00040 
00041   virtual void setConfiguration( const ConstConfigurationPtr & ) = 0;
00042 
00043 };
00044 
00045 #endif