CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
FWConfigurable.h
Go to the documentation of this file.
1 #ifndef Fireworks_Core_FWConfigurable_h
2 #define Fireworks_Core_FWConfigurable_h
3 // -*- C++ -*-
4 //
5 // Package: Core
6 // Class : FWConfigurable
7 //
16 //
17 // Original Author: Chris Jones
18 // Created: Sun Feb 24 14:35:47 EST 2008
19 //
20 
21 // system include files
22 
23 // user include files
24 
25 // forward declarations
26 class FWConfiguration;
27 
29 public:
31  virtual ~FWConfigurable();
32 
33  // ---------- const member functions ---------------------
34  virtual void addTo(FWConfiguration&) const = 0;
35 
36  // ---------- static member functions --------------------
37 
38  // ---------- member functions ---------------------------
39  virtual void setFrom(const FWConfiguration&) = 0;
40 
41  FWConfigurable(const FWConfigurable&) = delete; // stop default
42 
43  const FWConfigurable& operator=(const FWConfigurable&) = delete; // stop default
44 private:
45  // ---------- member data --------------------------------
46 };
47 
48 #endif
virtual void addTo(FWConfiguration &) const =0
const FWConfigurable & operator=(const FWConfigurable &)=delete
virtual ~FWConfigurable()
virtual void setFrom(const FWConfiguration &)=0