Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-05-05 22:42:32 +0000
committerStijn Buys <ingar@osirion.org>2008-05-05 22:42:32 +0000
commit8fefc1d995083f0d4a9873f216ccc6e15688d0a9 (patch)
tree07884b91b2d3729fae93114ec814b3982165894b /src/core/stats.h
parentc11c0174ece92b4502648ad33653975bfdfc39a0 (diff)
Core stats
Diffstat (limited to 'src/core/stats.h')
-rw-r--r--src/core/stats.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/core/stats.h b/src/core/stats.h
new file mode 100644
index 0000000..44153ec
--- /dev/null
+++ b/src/core/stats.h
@@ -0,0 +1,27 @@
+/*
+ core/stats.h
+ This file is part of the Osirion project and is distributed under
+ the terms of the GNU General Public License version 2
+*/
+
+#ifndef __INCLUDED_CORE_STATS_H__
+#define __INCLUDED_CORE_STATS_H__
+
+/// this namespace contains the network subsystem
+namespace core
+{
+
+/// class to gather various engine statistics
+class Stats {
+public:
+ /// clear statistics
+ static void clear();
+
+ static unsigned int network_bytes_sent;
+ static unsigned int network_bytes_received;
+};
+
+}
+
+#endif // __INCLUDED_CORE_STATS_H__
+