Files
DRAMSys/DRAM/dram/core/ControllerState.h
2014-03-15 18:31:16 +01:00

26 lines
395 B
C++

/*
* controller_state.h
*
* Created on: Mar 5, 2014
* Author: jonny
*/
#ifndef CONTROLLER_STATE_H_
#define CONTROLLER_STATE_H_
#include "common/BankStates.h"
namespace controller {
class ControllerState {
public:
ControllerState(unsigned int numberOfBanks);
virtual ~ControllerState();
BankStates bankStates;
};
} /* namespace controller */
#endif /* CONTROLLER_STATE_H_ */