diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-08-26 02:48:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-08-26 02:48:32 +0300 |
commit | ab596ef3f4215f792feaa9ca1dfe5acb74c67328 (patch) | |
tree | ac5a4f31e2fa9c784d7de8d817654d47e21ccac2 /src/depricatedevent.cpp | |
parent | 399f264360f6e8dfa31d0c3ff7d72aad8033888d (diff) | |
download | plus-ab596ef3f4215f792feaa9ca1dfe5acb74c67328.tar.gz plus-ab596ef3f4215f792feaa9ca1dfe5acb74c67328.tar.bz2 plus-ab596ef3f4215f792feaa9ca1dfe5acb74c67328.tar.xz plus-ab596ef3f4215f792feaa9ca1dfe5acb74c67328.zip |
Add const to some classes.
Diffstat (limited to 'src/depricatedevent.cpp')
-rw-r--r-- | src/depricatedevent.cpp | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/src/depricatedevent.cpp b/src/depricatedevent.cpp index d6a1f2935..81c1e1c14 100644 --- a/src/depricatedevent.cpp +++ b/src/depricatedevent.cpp @@ -39,7 +39,7 @@ DepricatedEvent::~DepricatedEvent() } } -void DepricatedEvent::setInt(const std::string &key, int value) +void DepricatedEvent::setInt(const std::string &key, const int value) throw (BadDepricatedEvent) { if (mData.find(key) != mData.end()) @@ -51,7 +51,7 @@ void DepricatedEvent::setInt(const std::string &key, int value) int DepricatedEvent::getInt(const std::string &key) const throw (BadDepricatedEvent) { - VariableMap::const_iterator it = mData.find(key); + const VariableMap::const_iterator it = mData.find(key); if (it == mData.end()) throw BAD_KEY; @@ -74,7 +74,7 @@ void DepricatedEvent::setString(const std::string &key, const std::string &DepricatedEvent::getString(const std::string &key) const throw (BadDepricatedEvent) { - VariableMap::const_iterator it = mData.find(key); + const VariableMap::const_iterator it = mData.find(key); if (it == mData.end()) throw BAD_KEY; @@ -85,7 +85,7 @@ const std::string &DepricatedEvent::getString(const std::string &key) } -void DepricatedEvent::setFloat(const std::string &key, double value) +void DepricatedEvent::setFloat(const std::string &key, const double value) throw (BadDepricatedEvent) { if (mData.find(key) != mData.end()) @@ -97,7 +97,7 @@ void DepricatedEvent::setFloat(const std::string &key, double value) double DepricatedEvent::getFloat(const std::string &key) const throw (BadDepricatedEvent) { - VariableMap::const_iterator it = mData.find(key); + const VariableMap::const_iterator it = mData.find(key); if (it == mData.end()) throw BAD_KEY; @@ -107,9 +107,10 @@ double DepricatedEvent::getFloat(const std::string &key) const return static_cast<FloatData *>(it->second)->getData(); } -void DepricatedEvent::trigger(Channels channel, const DepricatedEvent &event) +void DepricatedEvent::trigger(const Channels channel, + const DepricatedEvent &event) { - ListenMap::const_iterator it = mBindings.find(channel); + const ListenMap::const_iterator it = mBindings.find(channel); // Make sure something is listening if (it == mBindings.end()) @@ -117,7 +118,7 @@ void DepricatedEvent::trigger(Channels channel, const DepricatedEvent &event) // Loop though all listeners ListenerSet::const_iterator lit = it->second.begin(); - ListenerSet::const_iterator lit_end = it->second.end(); + const ListenerSet::const_iterator lit_end = it->second.end(); while (lit != lit_end) { if (*lit) @@ -126,7 +127,7 @@ void DepricatedEvent::trigger(Channels channel, const DepricatedEvent &event) } } -void DepricatedEvent::remove(Listener *listener) +void DepricatedEvent::remove(Listener *const listener) { ListenMap::iterator it = mBindings.begin(); while (it != mBindings.end()) @@ -136,12 +137,12 @@ void DepricatedEvent::remove(Listener *listener) } } -void DepricatedEvent::bind(Listener *listener, Channels channel) +void DepricatedEvent::bind(Listener *const listener, const Channels channel) { mBindings[channel].insert(listener); } -void DepricatedEvent::unbind(Listener *listener, Channels channel) +void DepricatedEvent::unbind(Listener *const listener, const Channels channel) { mBindings[channel].erase(listener); } |