fdhwlib
2.0.25
|
00001 /*************************************************************************** 00002 subrackboard.h - description 00003 ------------------- 00004 begin : Mo Jul 11 2005 00005 copyright : (C) 2005 by 00006 email : 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef _HW4_SUBRACKBOARD_H_INCLUDED 00019 #define _HW4_SUBRACKBOARD_H_INCLUDED 00020 00021 #include <Hw/subrackboardbase.h> 00022 00023 namespace hw4 { 00024 00025 // --- forward declaration(s) 00026 00027 class BaseRegister; 00028 00034 class SubrackBoard : public SubrackBoardBase { 00035 public: 00036 SubrackBoard(); 00037 ~SubrackBoard(); 00038 00040 BaseRegister ** regList; 00041 00042 int nRegs; 00043 }; 00044 00045 } // namespace hw4 00046 00047 #endif // _HW4_SUBRACKBOARD_H_INCLUDED 00048