CMS 3D CMS Logo

DisplayPlugin.h
Go to the documentation of this file.
1 #ifndef Fireworks_Geometry_DisplayPlugin_h
2 #define Fireworks_Geometry_DisplayPlugin_h
3 // -*- C++ -*-
4 //
5 // Package: Geometry
6 // Class : DisplayPlugin
7 //
16 //
17 // Original Author:
18 // Created: Thu Mar 18 04:08:58 CDT 2010
19 //
20 
21 // system include files
22 
23 // user include files
24 
25 // forward declarations
26 namespace edm {
27  class EventSetup;
28 }
29 
30 namespace fireworks {
31  namespace geometry {
32  class DisplayPlugin {
33  public:
34  DisplayPlugin();
35  virtual ~DisplayPlugin();
36 
37  // ---------- const member functions ---------------------
38 
39  // ---------- static member functions --------------------
40 
41  // ---------- member functions ---------------------------
42  virtual void run(const edm::EventSetup&) = 0;
43 
44  DisplayPlugin(const DisplayPlugin&) = delete; // stop default
45 
46  const DisplayPlugin& operator=(const DisplayPlugin&) = delete; // stop default
47 
48  // ---------- member data --------------------------------
49  };
50  } // namespace geometry
51 } // namespace fireworks
52 
53 #endif
virtual void run(const edm::EventSetup &)=0
HLT enums.
const DisplayPlugin & operator=(const DisplayPlugin &)=delete