1// Aseprite Document Library
2// Copyright (c) 2001-2015 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 DOC_USER_DATA_IO_H_INCLUDED
8#define DOC_USER_DATA_IO_H_INCLUDED
9#pragma once
10
11#include <iosfwd>
12
13namespace doc {
14
15 class UserData;
16
17 void write_user_data(std::ostream& os, const UserData& userData);
18 UserData read_user_data(std::istream& is);
19
20} // namespace doc
21
22#endif
23