forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayer_io.h
More file actions
30 lines (22 loc) · 729 Bytes
/
layer_io.h
File metadata and controls
30 lines (22 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// 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_LAYER_IO_H_INCLUDED
#define DOC_LAYER_IO_H_INCLUDED
#pragma once
#include "base/exception.h"
#include <iosfwd>
namespace doc {
class Layer;
class SubObjectsFromSprite;
// Thrown when a invalid layer type is read from the istream.
class InvalidLayerType : public base::Exception {
public:
InvalidLayerType(const char* msg) throw() : base::Exception(msg) { }
};
void write_layer(std::ostream& os, const Layer* layer);
Layer* read_layer(std::istream& is, SubObjectsFromSprite* subObjects);
} // namespace doc
#endif