2014-10-20 22:21:31 -03:00
|
|
|
// Aseprite Document Library
|
2015-09-14 17:37:21 -03:00
|
|
|
// Copyright (c) 2001-2015 David Capello
|
2014-10-20 22:21:31 -03:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
2015-09-14 17:37:21 -03:00
|
|
|
#include <vector>
|
2014-10-20 22:21:31 -03:00
|
|
|
|
|
|
|
namespace doc {
|
|
|
|
|
|
|
|
class Layer;
|
|
|
|
|
2015-09-14 17:37:21 -03:00
|
|
|
typedef std::vector<Layer*> LayerList;
|
|
|
|
typedef LayerList::iterator LayerIterator;
|
|
|
|
typedef LayerList::const_iterator LayerConstIterator;
|
2014-10-20 22:21:31 -03:00
|
|
|
|
|
|
|
} // namespace doc
|
|
|
|
|
|
|
|
#endif // DOC_LAYER_LIST_H_INCLUDED
|