fdhwlib  2.0.25
/home/kopmann/git-mirror/fdhwlib/fdhwlib/FE/feunitsltregistervector.h
Go to the documentation of this file.
00001 /***************************************************************************
00002                           feunitsltregistervector.h  -  description
00003                              -------------------
00004     begin                : Do Jun 23 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 FEUNITSLTREGISTERVECTOR_H
00019 #define FEUNITSLTREGISTERVECTOR_H
00020 
00021 #include <FE/feunit.h>
00022 #include <Hw/SltRegisterVector.h>
00023 #include <Hw/SltRegister.h>
00024 
00025 class FEunitDataBoolVector;
00026 
00030 class FEunitSltRegisterVector : public FEunit  {
00031 public: 
00032   FEunitSltRegisterVector(SltRegisterVector *reg);
00033   FEunitSltRegisterVector(SltRegister *reg);
00034   
00035   ~FEunitSltRegisterVector();
00036 
00037 
00038   virtual void get();
00039 
00040   virtual void get(FEunitData **data);
00041 
00042   virtual FEunitData *ptr();
00043   
00044 private:
00045   SltRegister *reg1;
00046   SltRegisterVector *reg2;
00047 
00048   FEunitDataBoolVector *data;
00049     
00050 };
00051 
00052 #endif