Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:11:30

0001 #ifndef Fireworks_Core_FWConfigurable_h
0002 #define Fireworks_Core_FWConfigurable_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     Core
0006 // Class  :     FWConfigurable
0007 //
0008 /**\class FWConfigurable FWConfigurable.h Fireworks/Core/interface/FWConfigurable.h
0009 
0010    Description: <one line class summary>
0011 
0012    Usage:
0013     <usage>
0014 
0015  */
0016 //
0017 // Original Author:  Chris Jones
0018 //         Created:  Sun Feb 24 14:35:47 EST 2008
0019 //
0020 
0021 // system include files
0022 
0023 // user include files
0024 
0025 // forward declarations
0026 class FWConfiguration;
0027 
0028 class FWConfigurable {
0029 public:
0030   FWConfigurable();
0031   virtual ~FWConfigurable();
0032 
0033   // ---------- const member functions ---------------------
0034   virtual void addTo(FWConfiguration&) const = 0;
0035 
0036   // ---------- static member functions --------------------
0037 
0038   // ---------- member functions ---------------------------
0039   virtual void setFrom(const FWConfiguration&) = 0;
0040 
0041   FWConfigurable(const FWConfigurable&) = delete;  // stop default
0042 
0043   const FWConfigurable& operator=(const FWConfigurable&) = delete;  // stop default
0044 private:
0045   // ---------- member data --------------------------------
0046 };
0047 
0048 #endif