mirror of
https://github.com/aseprite/aseprite.git
synced 2025-02-22 15:39:52 +00:00
24 lines
523 B
C
24 lines
523 B
C
|
// Aseprite Document Library
|
||
|
// Copyright (c) 2001-2014 David Capello
|
||
|
//
|
||
|
// This file is released under the terms of the MIT license.
|
||
|
// Read LICENSE.txt for more information.
|
||
|
|
||
|
#ifndef DOC_LAYER_LIST_H_INCLUDED
|
||
|
#define DOC_LAYER_LIST_H_INCLUDED
|
||
|
#pragma once
|
||
|
|
||
|
#include <list>
|
||
|
|
||
|
namespace doc {
|
||
|
|
||
|
class Layer;
|
||
|
|
||
|
typedef std::list<Layer*> LayerList;
|
||
|
typedef std::list<Layer*>::iterator LayerIterator;
|
||
|
typedef std::list<Layer*>::const_iterator LayerConstIterator;
|
||
|
|
||
|
} // namespace doc
|
||
|
|
||
|
#endif // DOC_LAYER_LIST_H_INCLUDED
|