Back to home page

Project CMSSW displayed by LXR

 
 

    


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

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