diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-26 20:11:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-26 20:11:07 +0300 |
commit | 07675230038a24dd251581591379c8fe5cc7bfd1 (patch) | |
tree | 1e4633730515af717ba93aef111f855de5cc9b38 /src/resources/memorycounter.h | |
parent | 17f34f00d37432dae207be3d55ec531a738eb065 (diff) | |
download | plus-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.h')
-rw-r--r-- | src/resources/memorycounter.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resources/memorycounter.h b/src/resources/memorycounter.h index cb9d62583..94593b717 100644 --- a/src/resources/memorycounter.h +++ b/src/resources/memorycounter.h @@ -31,11 +31,11 @@ class MemoryCounter notfinal virtual ~MemoryCounter() { } - int calcMemory(const int level); + int calcMemory(const int level) const; - virtual int calcMemoryLocal(); + virtual int calcMemoryLocal() const; - virtual int calcMemoryChilds(const int level); + virtual int calcMemoryChilds(const int level) const; }; #endif // RESOURCES_MEMORYCOUNTER_H |