CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RPCLogicUnit.h
Go to the documentation of this file.
1 #ifndef INTERFACE_RPCLOGICUNIT_H
2 #define INTERFACE_RPCLOGICUNIT_H 1
3 
4 // Include files
5 
13 class RPCLogicUnit {
14 public:
16  RPCLogicUnit( ) {};
17 
18  RPCLogicUnit( int, int, int );
19 
20  virtual ~RPCLogicUnit( );
21 
22  int m_propA;
23  int m_propB;
24  int m_propC;
25 
26 protected:
27 
28 private:
29 
30 };
31 #endif // INTERFACE_RPCLOGICUNIT_H
virtual ~RPCLogicUnit()
Destructor.
Definition: RPCLogicUnit.cc:26
RPCLogicUnit()
Standard constructor.
Definition: RPCLogicUnit.h:16