summaryrefslogtreecommitdiff
path: root/protocols/Xfire/src/monitoredobj.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Xfire/src/monitoredobj.cpp')
-rw-r--r--protocols/Xfire/src/monitoredobj.cpp27
1 files changed, 15 insertions, 12 deletions
diff --git a/protocols/Xfire/src/monitoredobj.cpp b/protocols/Xfire/src/monitoredobj.cpp
index 42b00120ae..a5abe3fa78 100644
--- a/protocols/Xfire/src/monitoredobj.cpp
+++ b/protocols/Xfire/src/monitoredobj.cpp
@@ -24,18 +24,21 @@
//alle string klassen entfernt, da die stringklasse instabil ist - dufte
-namespace xfirelib {
- int MonitoredObj::id = 0;
- MonitoredObj::MonitoredObj() {
- this->myid = id++;
- }
+namespace xfirelib
+{
+ int MonitoredObj::id = 0;
+ MonitoredObj::MonitoredObj()
+ {
+ this->myid = id++;
+ }
- MonitoredObj::~MonitoredObj() {
- }
-
- int MonitoredObj::getTotalObjectCount() {
- int total = 0;
- return total;
- }
+ MonitoredObj::~MonitoredObj()
+ {
+ }
+ int MonitoredObj::getTotalObjectCount()
+ {
+ int total = 0;
+ return total;
+ }
};