1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#ifndef Fireworks_Geometry_DisplayPlugin_h
#define Fireworks_Geometry_DisplayPlugin_h
// -*- C++ -*-
//
// Package: Geometry
// Class : DisplayPlugin
//
/**\class DisplayPlugin DisplayPlugin.h Fireworks/Geometry/interface/DisplayPlugin.h
Description: [one line class summary]
Usage:
<usage>
*/
//
// Original Author:
// Created: Thu Mar 18 04:08:58 CDT 2010
//
// system include files
// user include files
// forward declarations
namespace edm {
class EventSetup;
}
namespace fireworks {
namespace geometry {
class DisplayPlugin {
public:
DisplayPlugin();
virtual ~DisplayPlugin();
// ---------- const member functions ---------------------
// ---------- static member functions --------------------
// ---------- member functions ---------------------------
virtual void run(const edm::EventSetup&) = 0;
DisplayPlugin(const DisplayPlugin&) = delete; // stop default
const DisplayPlugin& operator=(const DisplayPlugin&) = delete; // stop default
// ---------- member data --------------------------------
};
} // namespace geometry
} // namespace fireworks
#endif
|