aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2012-09-17 01:03:35 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2013-01-13 22:41:06 +0100
commitb05920748f2eb83839c7925f3c83530b733331f1 (patch)
tree122f00948216df036b159df9630fed645da1585a /src/utils
parent6bfb5f6d2c9b78c1439f9dfcc44005e6dc8056e4 (diff)
downloadusdx-b05920748f2eb83839c7925f3c83530b733331f1.tar.gz
usdx-b05920748f2eb83839c7925f3c83530b733331f1.tar.xz
usdx-b05920748f2eb83839c7925f3c83530b733331f1.zip
add const where applicable
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/image.cpp4
-rw-r--r--src/utils/image.hpp6
2 files changed, 5 insertions, 5 deletions
diff --git a/src/utils/image.cpp b/src/utils/image.cpp
index 4146e0e4..93808f2e 100644
--- a/src/utils/image.cpp
+++ b/src/utils/image.cpp
@@ -58,7 +58,7 @@ namespace usdx
}
}
- void Image::load(void)
+ void Image::load(void) const
{
BinaryFile file(filename);
@@ -73,7 +73,7 @@ namespace usdx
}
}
- SDL_Surface* Image::get_surface(void)
+ const SDL_Surface* Image::get_surface(void) const
{
if (surface == NULL) {
load();
diff --git a/src/utils/image.hpp b/src/utils/image.hpp
index e27dc49d..b968652c 100644
--- a/src/utils/image.hpp
+++ b/src/utils/image.hpp
@@ -51,15 +51,15 @@ namespace usdx
static log4cpp::Category& log;
boost::filesystem::wpath filename;
- SDL_Surface* surface;
+ mutable SDL_Surface* surface;
- void load(void);
+ void load(void) const;
public:
Image(boost::filesystem::wpath filename);
virtual ~Image();
- SDL_Surface* get_surface(void);
+ const SDL_Surface* get_surface(void) const;
};
};