CMS 3D CMS Logo

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 {
30 
31 public:
33  virtual ~FWConfigurable();
34 
35  // ---------- const member functions ---------------------
36  virtual void addTo(FWConfiguration&) const = 0;
37 
38  // ---------- static member functions --------------------
39 
40  // ---------- member functions ---------------------------
41  virtual void setFrom(const FWConfiguration&) = 0;
42 
43 private:
44  FWConfigurable(const FWConfigurable&) = delete; // stop default
45 
46  const FWConfigurable& operator=(const FWConfigurable&) = delete; // stop default
47 
48  // ---------- member data --------------------------------
49 
50 };
51 
52 
53 #endif
virtual void addTo(FWConfiguration &) const =0
const FWConfigurable & operator=(const FWConfigurable &)=delete
virtual ~FWConfigurable()
virtual void setFrom(const FWConfiguration &)=0