diff options
Diffstat (limited to 'Swift/QtUI/QtCachedImageScaler.h')
-rw-r--r-- | Swift/QtUI/QtCachedImageScaler.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Swift/QtUI/QtCachedImageScaler.h b/Swift/QtUI/QtCachedImageScaler.h new file mode 100644 index 0000000..f85357f --- /dev/null +++ b/Swift/QtUI/QtCachedImageScaler.h @@ -0,0 +1,19 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#pragma once + +#include <boost/filesystem.hpp> + +namespace Swift { + class QtCachedImageScaler { + public: + QtCachedImageScaler(); + + boost::filesystem::path getScaledImage(const boost::filesystem::path& image, int size); + }; +} + |