summaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2011-03-11 14:56:50 +0100
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2011-03-12 17:52:42 +0100
commit0e2a9c41c5b14f3037c8df8e6deddba63fa7120e (patch)
tree7e4875ddec8e8e96de505e5459f4950b17c3a38a /src/utils
parentba57aa3eedf09f32a1ed003ce26ca54666796aef (diff)
downloadmanaserv-0e2a9c41c5b14f3037c8df8e6deddba63fa7120e.tar.gz
manaserv-0e2a9c41c5b14f3037c8df8e6deddba63fa7120e.tar.xz
manaserv-0e2a9c41c5b14f3037c8df8e6deddba63fa7120e.zip
Removed a bunch of silly documentation
A C++ developer should be able to recognize a constructor and a destructor by just looking at it, so let's stop writing down the obvious. :)
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/singleton.h3
-rw-r--r--src/utils/timer.h3
2 files changed, 3 insertions, 3 deletions
diff --git a/src/utils/singleton.h b/src/utils/singleton.h
index 4535439..c3a8e2f 100644
--- a/src/utils/singleton.h
+++ b/src/utils/singleton.h
@@ -50,9 +50,6 @@ class Singleton
throw()
{}
- /**
- * Destructor.
- */
virtual ~Singleton()
throw()
{}
diff --git a/src/utils/timer.h b/src/utils/timer.h
index d64ed54..87c94a2 100644
--- a/src/utils/timer.h
+++ b/src/utils/timer.h
@@ -39,6 +39,9 @@ class Timer
public:
/**
* Constructor.
+ *
+ * @param ms the interval in milliseconds
+ * @param createActive whether the timer should be implicitly started
*/
Timer(unsigned int ms, bool createActive = true);