1 | // Aseprite Document Library |
---|---|
2 | // Copyright (C) 2019 Igara Studio S.A. |
3 | // Copyright (C) 2001-2015 David Capello |
4 | // |
5 | // This file is released under the terms of the MIT license. |
6 | // Read LICENSE.txt for more information. |
7 | |
8 | #ifndef DOC_IMAGE_REF_H_INCLUDED |
9 | #define DOC_IMAGE_REF_H_INCLUDED |
10 | #pragma once |
11 | |
12 | #include "doc/image.h" |
13 | |
14 | #include <memory> |
15 | |
16 | namespace doc { |
17 | |
18 | typedef std::shared_ptr<Image> ImageRef; |
19 | |
20 | } // namespace doc |
21 | |
22 | #endif |
23 |