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_STRING_IO_H_INCLUDED |
8 | #define DOC_STRING_IO_H_INCLUDED |
9 | #pragma once |
10 | |
11 | #include <string> |
12 | |
13 | namespace doc { |
14 | |
15 | void write_string(std::ostream& os, const std::string& str); |
16 | std::string read_string(std::istream& is); |
17 | |
18 | } // namespace doc |
19 | |
20 | #endif |
21 |