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
11namespace dio {
12
13class DecodeDelegate;
14class FileInterface;
15
16bool decode_file(DecodeDelegate* delegate,
17 FileInterface* f);
18
19} // namespace dio
20
21#endif
22