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.cc')
-rw-r--r--src/core/stats.cc21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/core/stats.cc b/src/core/stats.cc
new file mode 100644
index 0000000..0e6a15b
--- /dev/null
+++ b/src/core/stats.cc
@@ -0,0 +1,21 @@
+/*
+ core/stats.cc
+ This file is part of the Osirion project and is distributed under
+ the terms of the GNU General Public License version 2
+*/
+
+#include "core/stats.h"
+
+namespace core {
+
+unsigned int Stats::network_bytes_sent = 0;
+unsigned int Stats::network_bytes_received = 0;
+
+void Stats::clear()
+{
+ network_bytes_sent = 0;
+ network_bytes_received = 0;
+};
+
+}
+