CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CSGConnector.h
Go to the documentation of this file.
1 #ifndef Fireworks_Core_CSGConnector_h
2 #define Fireworks_Core_CSGConnector_h
3 // -*- C++ -*-
4 //
5 // Package: Core
6 // Class : CSGConnector
7 //
16 //
17 // Original Author: Chris Jones
18 // Created: Thu May 29 18:16:04 CDT 2008
19 // $Id: CSGConnector.h,v 1.5 2009/08/26 18:59:20 amraktad Exp $
20 //
21 
22 // system include files
23 #include "TQObject.h"
24 
25 // user include files
26 
27 // forward declarations
28 class CSGAction;
30 
31 class CSGConnector : public TQObject {
32 
33 public:
34  CSGConnector(CSGAction *action, CSGActionSupervisor *supervisor) : m_action(action), m_supervisor(supervisor) {
35  };
36  //virtual ~CSGConnector();
37 
38  // ---------- member functions ---------------------------
39  void handleMenu(Int_t entry);
40  void handleToolBar(Int_t entry);
42 
43 private:
44  CSGConnector(const CSGConnector&); // stop default
45 
46  const CSGConnector& operator=(const CSGConnector&); // stop default
47 
48  // ---------- member data --------------------------------
51 
52 };
53 
54 
55 #endif
CSGActionSupervisor * m_supervisor
Definition: CSGConnector.h:50
void handleMenu(Int_t entry)
Definition: CSGConnector.cc:61
CSGConnector(CSGAction *action, CSGActionSupervisor *supervisor)
Definition: CSGConnector.h:34
std::pair< std::string, MonitorElement * > entry
Definition: ME_MAP.h:8
void handleToolBar(Int_t entry)
Definition: CSGConnector.cc:65
CSGAction * m_action
Definition: CSGConnector.h:49
ClassDef(CSGConnector, 0)
const CSGConnector & operator=(const CSGConnector &)