| 1 | // Aseprite Document Library | 
|---|---|
| 2 | // Copyright (c) 2018 Igara Studio S.A. | 
| 3 | // | 
| 4 | // This file is released under the terms of the MIT license. | 
| 5 | // Read LICENSE.txt for more information. | 
| 6 | |
| 7 | #ifndef DOC_OBJECT_IDS_H_INCLUDED | 
| 8 | #define DOC_OBJECT_IDS_H_INCLUDED | 
| 9 | #pragma once | 
| 10 | |
| 11 | #include "doc/object_id.h" | 
| 12 | |
| 13 | #include <vector> | 
| 14 | |
| 15 | namespace doc { | 
| 16 | |
| 17 | typedef std::vector<ObjectId> ObjectIds; | 
| 18 | |
| 19 | } // namespace doc | 
| 20 | |
| 21 | #endif // DOC_OBJECT_IDS_H_INCLUDED | 
| 22 | 
