1 // Aseprite
2 // Copyright (C) 2001-2018  David Capello
3 //
4 // This program is distributed under the terms of
5 // the End-User License Agreement for Aseprite.
6 
7 #ifndef APP_UTIL_RANGE_UTILS_H_INCLUDED
8 #define APP_UTIL_RANGE_UTILS_H_INCLUDED
9 #pragma once
10 
11 #include "doc/cel_list.h"
12 
13 #include <vector>
14 
15 namespace doc {
16   class Sprite;
17 }
18 
19 namespace app {
20   using namespace doc;
21 
22   class DocRange;
23 
24   doc::CelList get_unlocked_unique_cels(doc::Sprite* sprite, const DocRange& range);
25 
26 } // namespace app
27 
28 #endif
29