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 // $Id: RPCLogicUnit.h,v 1.2 2009/08/09 11:11:36 aosorio Exp $
2 #ifndef INTERFACE_RPCLOGICUNIT_H
3 #define INTERFACE_RPCLOGICUNIT_H 1
4 
5 // Include files
6 
14 class RPCLogicUnit {
15 public:
17  RPCLogicUnit( ) {};
18 
19  RPCLogicUnit( int, int, int );
20 
21  virtual ~RPCLogicUnit( );
22 
23  int m_propA;
24  int m_propB;
25  int m_propC;
26 
27 protected:
28 
29 private:
30 
31 };
32 #endif // INTERFACE_RPCLOGICUNIT_H
virtual ~RPCLogicUnit()
Destructor.
Definition: RPCLogicUnit.cc:27
RPCLogicUnit()
Standard constructor.
Definition: RPCLogicUnit.h:17