summaryrefslogtreecommitdiffstats
path: root/src/Common/SystemBackend.h
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2008-09-19 12:55:56 +0200
committerMatthias Schiffer <matthias@gamezock.de>2008-09-19 12:55:56 +0200
commit5286ffcb30e3005569199c45bca38dfbf346cec3 (patch)
treeefe2d679c2dbec2618a37cf5f0edd85a067919b3 /src/Common/SystemBackend.h
parent45c735361b483bd44b5b59c3fb4b055ddbad129a (diff)
downloadmad-5286ffcb30e3005569199c45bca38dfbf346cec3.tar
mad-5286ffcb30e3005569199c45bca38dfbf346cec3.zip
Dateien in SystemBackendProc nicht nach jeder Abfrage schlie?en
Diffstat (limited to 'src/Common/SystemBackend.h')
-rw-r--r--src/Common/SystemBackend.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Common/SystemBackend.h b/src/Common/SystemBackend.h
index 8942ff0..9157e07 100644
--- a/src/Common/SystemBackend.h
+++ b/src/Common/SystemBackend.h
@@ -52,12 +52,12 @@ class SystemBackend {
virtual ~SystemBackend() {}
- virtual UptimeInfo getUptimeInfo() const {
+ virtual UptimeInfo getUptimeInfo() {
UptimeInfo ret = {0, 0};
return ret;
}
- virtual MemoryInfo getMemoryInfo() const {
+ virtual MemoryInfo getMemoryInfo() {
MemoryInfo ret = {0, 0, 0, 0};
return ret;
}