Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef Fireworks_Geometry_DisplayPlugin_h
0002 #define Fireworks_Geometry_DisplayPlugin_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     Geometry
0006 // Class  :     DisplayPlugin
0007 //
0008 /**\class DisplayPlugin DisplayPlugin.h Fireworks/Geometry/interface/DisplayPlugin.h
0009 
0010  Description: [one line class summary]
0011 
0012  Usage:
0013     <usage>
0014 
0015 */
0016 //
0017 // Original Author:
0018 //         Created:  Thu Mar 18 04:08:58 CDT 2010
0019 //
0020 
0021 // system include files
0022 
0023 // user include files
0024 
0025 // forward declarations
0026 namespace edm {
0027   class EventSetup;
0028 }
0029 
0030 namespace fireworks {
0031   namespace geometry {
0032     class DisplayPlugin {
0033     public:
0034       DisplayPlugin();
0035       virtual ~DisplayPlugin();
0036 
0037       // ---------- const member functions ---------------------
0038 
0039       // ---------- static member functions --------------------
0040 
0041       // ---------- member functions ---------------------------
0042       virtual void run(const edm::EventSetup&) = 0;
0043 
0044       DisplayPlugin(const DisplayPlugin&) = delete;  // stop default
0045 
0046       const DisplayPlugin& operator=(const DisplayPlugin&) = delete;  // stop default
0047 
0048       // ---------- member data --------------------------------
0049     };
0050   }  // namespace geometry
0051 }  // namespace fireworks
0052 
0053 #endif