summaryrefslogtreecommitdiff
path: root/src/resources/memorycounter.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-04-26 20:11:07 +0300
committerAndrei Karas <akaras@inbox.ru>2016-04-26 20:11:07 +0300
commit07675230038a24dd251581591379c8fe5cc7bfd1 (patch)
tree1e4633730515af717ba93aef111f855de5cc9b38 /src/resources/memorycounter.cpp
parent17f34f00d37432dae207be3d55ec531a738eb065 (diff)
downloadplus-07675230038a24dd251581591379c8fe5cc7bfd1.tar.gz
plus-07675230038a24dd251581591379c8fe5cc7bfd1.tar.bz2
plus-07675230038a24dd251581591379c8fe5cc7bfd1.tar.xz
plus-07675230038a24dd251581591379c8fe5cc7bfd1.zip
Add memory count functions into MapLayer and SpecailLayer.
Also change all memory count functions into const methods.
Diffstat (limited to 'src/resources/memorycounter.cpp')
-rw-r--r--src/resources/memorycounter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resources/memorycounter.cpp b/src/resources/memorycounter.cpp
index e2961556e..e42a2640d 100644
--- a/src/resources/memorycounter.cpp
+++ b/src/resources/memorycounter.cpp
@@ -28,12 +28,12 @@ MemoryCounter::MemoryCounter()
{
}
-int MemoryCounter::calcMemoryLocal()
+int MemoryCounter::calcMemoryLocal() const
{
return 0;
}
-int MemoryCounter::calcMemory(const int level)
+int MemoryCounter::calcMemory(const int level) const
{
const int sumLocal = calcMemoryLocal();
const int sumChilds = calcMemoryChilds(level);
@@ -41,7 +41,7 @@ int MemoryCounter::calcMemory(const int level)
return sumLocal + sumChilds;
}
-int MemoryCounter::calcMemoryChilds(const int level A_UNUSED)
+int MemoryCounter::calcMemoryChilds(const int level A_UNUSED) const
{
return 0;
}