aboutsummaryrefslogtreecommitdiff
path: root/mapman/src/utils.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'mapman/src/utils.hpp')
-rw-r--r--mapman/src/utils.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/mapman/src/utils.hpp b/mapman/src/utils.hpp
index 76978f2..286e0e2 100644
--- a/mapman/src/utils.hpp
+++ b/mapman/src/utils.hpp
@@ -5,6 +5,7 @@
#include <array>
#include <QPixmap>
+#include <QImage>
struct rgb_t
{
@@ -78,5 +79,9 @@ const rgb_t MAP_COLORS[62] = {
{127, 167, 150}
};
+class map_library;
+struct map_group_t;
+
QPixmap pixmap_of_map_data(const map_data_t &map_data, double scaling = 1.);
+QImage image_of_map_group(const map_library *library, const map_group_t &group, double scaling = 1.);
#endif