summaryrefslogtreecommitdiff
path: root/src/map.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-09-26 20:08:44 +0300
committerAndrei Karas <akaras@inbox.ru>2013-09-28 21:17:59 +0300
commitc430b75e370a21a17f80d4ba3acd84111828a462 (patch)
tree6d4ea8421de26c623c4196a7dd2aa3d86c5add01 /src/map.h
parent1dcb42c708c92216c7c9cacd3d3c9301e71e6006 (diff)
downloadplus-c430b75e370a21a17f80d4ba3acd84111828a462.tar.gz
plus-c430b75e370a21a17f80d4ba3acd84111828a462.tar.bz2
plus-c430b75e370a21a17f80d4ba3acd84111828a462.tar.xz
plus-c430b75e370a21a17f80d4ba3acd84111828a462.zip
add const for methods return values.
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/map.h b/src/map.h
index 37990752b..11ef04fa1 100644
--- a/src/map.h
+++ b/src/map.h
@@ -214,12 +214,12 @@ class Map final : public Properties, public ConfigListener
/**
* Finds the tile set that a tile with the given global id is part of.
*/
- Tileset *getTilesetWithGid(const int gid) const A_WARN_UNUSED;
+ const Tileset *getTilesetWithGid(const int gid) const A_WARN_UNUSED;
/**
* Get tile reference.
*/
- MetaTile *getMetaTile(const int x, const int y) const A_WARN_UNUSED;
+ const MetaTile *getMetaTile(const int x, const int y) const A_WARN_UNUSED;
/**
* Marks a tile as occupied.
@@ -363,7 +363,8 @@ class Map final : public Properties, public ConfigListener
/**
* Gets the tile animation for a specific gid
*/
- TileAnimation *getAnimationForGid(const int gid) const A_WARN_UNUSED;
+ const TileAnimation *getAnimationForGid(const int gid)
+ const A_WARN_UNUSED;
void optionChanged(const std::string &value) override;
@@ -374,7 +375,7 @@ class Map final : public Properties, public ConfigListener
void setPvpMode(const int mode);
- ObjectsLayer* getObjectsLayer() const A_WARN_UNUSED
+ const ObjectsLayer* getObjectsLayer() const A_WARN_UNUSED
{ return mObjects; }
std::string getObjectData(const unsigned x, const unsigned y,