1 | // Aseprite Document IO Library |
---|---|
2 | // Copyright (c) 2017 David Capello |
3 | // |
4 | // This file is released under the terms of the MIT license. |
5 | // Read LICENSE.txt for more information. |
6 | |
7 | #ifndef DIO_DECODE_FILE_H_INCLUDED |
8 | #define DIO_DECODE_FILE_H_INCLUDED |
9 | #pragma once |
10 | |
11 | namespace dio { |
12 | |
13 | class DecodeDelegate; |
14 | class FileInterface; |
15 | |
16 | bool decode_file(DecodeDelegate* delegate, |
17 | FileInterface* f); |
18 | |
19 | } // namespace dio |
20 | |
21 | #endif |
22 |