diff options
author | Nathan Binkert <nate@binkert.org> | 2010-04-02 11:20:32 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2010-04-02 11:20:32 -0700 |
commit | f1c3f3044b73d890ffdfdd113b3b37ae2809d21b (patch) | |
tree | 959d71e897a8d01868c8dea8a8b225cbd1b5ce2c /src/mem/ruby/system/TimerTable.hh | |
parent | be10204729c107b41d5d7487323c732e9fa09df5 (diff) | |
download | gem5-f1c3f3044b73d890ffdfdd113b3b37ae2809d21b.tar.xz |
ruby: get "using namespace" out of headers
In addition to obvious changes, this required a slight change to the slicc
grammar to allow types with :: in them. Otherwise slicc barfs on std::string
which we need for the headers that slicc generates.
Diffstat (limited to 'src/mem/ruby/system/TimerTable.hh')
-rw-r--r-- | src/mem/ruby/system/TimerTable.hh | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/src/mem/ruby/system/TimerTable.hh b/src/mem/ruby/system/TimerTable.hh index 96b4b0b15..4c1d2afa3 100644 --- a/src/mem/ruby/system/TimerTable.hh +++ b/src/mem/ruby/system/TimerTable.hh @@ -30,6 +30,8 @@ #define __MEM_RUBY_SYSTEM_TIMERTABLE_HH__ #include <cassert> +#include <iostream> +#include <string> #include "mem/gems_common/Map.hh" #include "mem/ruby/common/Address.hh" @@ -42,7 +44,7 @@ class TimerTable public: TimerTable(); - static void printConfig(ostream& out) {} + static void printConfig(std::ostream& out) {} void setConsumer(Consumer* consumer_ptr) @@ -52,7 +54,7 @@ class TimerTable } void - setDescription(const string& name) + setDescription(const std::string& name) { m_name = name; } @@ -62,7 +64,7 @@ class TimerTable bool isSet(const Address& address) const { return m_map.exist(address); } void set(const Address& address, Time relative_latency); void unset(const Address& address); - void print(ostream& out) const; + void print(std::ostream& out) const; private: void updateNext() const; @@ -77,17 +79,14 @@ class TimerTable mutable Time m_next_time; // Only valid if m_next_valid is true mutable Address m_next_address; // Only valid if m_next_valid is true Consumer* m_consumer_ptr; // Consumer to signal a wakeup() - string m_name; + std::string m_name; }; -// ******************* Definitions ******************* - -// Output operator definition -inline ostream& -operator<<(ostream& out, const TimerTable& obj) +inline std::ostream& +operator<<(std::ostream& out, const TimerTable& obj) { obj.print(out); - out << flush; + out << std::flush; return out; } |