42a43
> #include <vector>
44d44
< #include "mem/gems_common/Vector.hh"
60,61c60,61
< void addInPort(const Vector<MessageBuffer*>& in);
< void addOutPort(const Vector<MessageBuffer*>& out,
---
> void addInPort(const std::vector<MessageBuffer*>& in);
> void addOutPort(const std::vector<MessageBuffer*>& out,
65c65
< const Vector<Throttle*>* getThrottles() const;
---
> const std::vector<Throttle*>* getThrottles() const;
83,84c83,84
< Vector<Throttle*> m_throttles;
< Vector<MessageBuffer*> m_buffers_to_free;
---
> std::vector<Throttle*> m_throttles;
> std::vector<MessageBuffer*> m_buffers_to_free;