1// Aseprite Document Library
2// Copyright (c) 2022 Igara Studio S.A.
3// Copyright (c) 2001-2014 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_FILE_COL_FILE_H_INCLUDED
9#define DOC_FILE_COL_FILE_H_INCLUDED
10#pragma once
11
12#include <memory>
13
14namespace doc {
15
16 class Palette;
17
18 namespace file {
19
20 std::unique_ptr<Palette> load_col_file(const char* filename);
21 bool save_col_file(const Palette* pal, const char* filename);
22
23 } // namespace file
24
25} // namespace doc
26
27#endif
28