aseprite/src/doc/string_io.h
2015-02-17 13:16:33 -03:00

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