mirror of
https://github.com/aseprite/aseprite.git
synced 2025-04-03 07:20:46 +00:00
21 lines
429 B
C++
21 lines
429 B
C++
// Aseprite Document Library
|
|
// Copyright (c) 2001-2015 David Capello
|
|
//
|
|
// This file is released under the terms of the MIT license.
|
|
// Read LICENSE.txt for more information.
|
|
|
|
#ifndef DOC_STRING_IO_H_INCLUDED
|
|
#define DOC_STRING_IO_H_INCLUDED
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace doc {
|
|
|
|
void write_string(std::ostream& os, const std::string& str);
|
|
std::string read_string(std::istream& is);
|
|
|
|
} // namespace doc
|
|
|
|
#endif
|