Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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__
+