summaryrefslogtreecommitdiff
path: root/src/event.h
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2010-07-14 22:00:44 +0200
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2010-07-14 22:00:44 +0200
commitb738d67f76336641468e3f77cef472a52a6e5ad3 (patch)
treed03f1c177c92060e7be7e78c61217ea5c663755f /src/event.h
parent7ae52ac5392607f5cb56dffa9ae45ae5a2f14bd1 (diff)
downloadmana-b738d67f76336641468e3f77cef472a52a6e5ad3.tar.gz
mana-b738d67f76336641468e3f77cef472a52a6e5ad3.tar.bz2
mana-b738d67f76336641468e3f77cef472a52a6e5ad3.tar.xz
mana-b738d67f76336641468e3f77cef472a52a6e5ad3.zip
Removed unnecessary semicolons after namespaces
Please don't, it causes warnings with my settings, which makes my build fail. ;)
Diffstat (limited to 'src/event.h')
-rw-r--r--src/event.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/event.h b/src/event.h
index d856bd6c..03751739 100644
--- a/src/event.h
+++ b/src/event.h
@@ -39,7 +39,7 @@ typedef std::map<std::string, VariableData *> VariableMap;
class Event
{
- public:
+public:
// String passed can be retivered with getName()
// and is to used to identify what type of event
// this is.
@@ -63,11 +63,12 @@ class Event
void setFloat(const std::string &key, double value) throw (BadEvent);
double getFloat(const std::string &key) const throw (BadEvent);
- private:
+private:
std::string mEventName;
VariableMap mData;
};
-}; // namespace Mana
+} // namespace Mana
+
#endif