aseprite/src/doc/cel_io.h
David Capello a4478e9306 Add UI and logic to recover a backup session
Changes:
* Add DataRecoveryView
* Split SubObjectsIO into an interface and SubObjectsFromSprite
* Add a "setId" parameter to some doc::read_* functions (we need this
  functionality from session recovery)
2015-04-08 20:05:05 -03:00

24 lines
483 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_CEL_IO_H_INCLUDED
#define DOC_CEL_IO_H_INCLUDED
#pragma once
#include <iosfwd>
namespace doc {
class Cel;
class SubObjectsIO;
void write_cel(std::ostream& os, const Cel* cel);
Cel* read_cel(std::istream& is, SubObjectsIO* subObjects, bool setId = true);
} // namespace doc
#endif