IWORKTypes_fwd.h
Go to the documentation of this file.
1 /*
2  * This file is part of the libetonyek project.
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  */
8 
9 #ifndef IWORKTYPES_FWD_H_INCLUDED
10 #define IWORKTYPES_FWD_H_INCLUDED
11 
12 #include <deque>
13 #include <memory>
14 #include <string>
15 #include <unordered_map>
16 
17 namespace libetonyek
18 {
19 
20 typedef std::string ID_t;
21 
23 
24 typedef std::deque<IWORKColumnRowSize> IWORKColumnSizes_t;
25 
26 typedef std::deque<IWORKColumnRowSize> IWORKRowSizes_t;
27 
28 typedef unsigned IWORKOutputID_t;
29 
30 typedef std::unordered_map<ID_t, IWORKOutputID_t> IWORKOutputMap_t;
31 
32 typedef std::unordered_map<std::string, std::string> IWORKFormatNameMap;
33 
34 typedef std::unordered_map<std::string, std::string> IWORKTableNameMap_t;
35 
36 typedef std::shared_ptr<IWORKTableNameMap_t> IWORKTableNameMapPtr_t;
37 
38 typedef std::unordered_map<std::string, std::string> IWORKContentMap_t;
39 
40 struct IWORKSize;
41 struct IWORKPosition;
42 
44 
45 typedef std::shared_ptr<IWORKGeometry> IWORKGeometryPtr_t;
46 
47 struct IWORKLine;
48 
49 typedef std::shared_ptr<IWORKLine> IWORKLinePtr_t;
50 
51 struct IWORKData;
52 
53 typedef std::shared_ptr<IWORKData> IWORKDataPtr_t;
54 typedef std::unordered_map<ID_t, IWORKDataPtr_t> IWORKDataMap_t;
55 
57 
58 typedef std::shared_ptr<IWORKMediaContent> IWORKMediaContentPtr_t;
59 typedef std::unordered_map<ID_t, IWORKMediaContentPtr_t> IWORKMediaContentMap_t;
60 
61 struct IWORKImage;
62 
63 typedef std::shared_ptr<IWORKImage> IWORKImagePtr_t;
64 typedef std::unordered_map<ID_t, IWORKImagePtr_t> IWORKImageMap_t;
65 
66 struct IWORKMedia;
67 
68 typedef std::shared_ptr<IWORKMedia> IWORKMediaPtr_t;
69 
70 struct IWORKWrap;
71 
72 typedef std::shared_ptr<IWORKWrap> IWORKWrapPtr_t;
73 
74 struct IWORKGroup;
75 
76 typedef std::shared_ptr<IWORKGroup> IWORKGroupPtr_t;
77 
79 
80 typedef std::shared_ptr<IWORKTableData> IWORKTableDataPtr_t;
81 
82 class IWORKTable;
83 typedef std::shared_ptr<IWORKTable> IWORKTablePtr_t;
84 typedef std::unordered_map<ID_t, IWORKTablePtr_t> IWORKTableMap_t;
85 
86 }
87 
88 #endif // IWORKTYPES_FWD_H_INCLUDED
89 
90 /* vim:set shiftwidth=2 softtabstop=2 expandtab: */
std::shared_ptr< IWORKGeometry > IWORKGeometryPtr_t
Definition: IWORKTypes_fwd.h:43
Definition: IWORKBezierElement.cpp:20
std::unordered_map< std::string, std::string > IWORKTableNameMap_t
Definition: IWORKTypes_fwd.h:34
Definition: IWORKTypes.h:213
Definition: IWORKTypes.h:139
unsigned IWORKOutputID_t
Definition: IWORKTypes_fwd.h:28
std::unordered_map< ID_t, IWORKOutputID_t > IWORKOutputMap_t
Definition: IWORKTypes_fwd.h:30
std::shared_ptr< IWORKWrap > IWORKWrapPtr_t
Definition: IWORKTypes_fwd.h:70
std::shared_ptr< IWORKMedia > IWORKMediaPtr_t
Definition: IWORKTypes_fwd.h:66
std::unordered_map< ID_t, IWORKDataPtr_t > IWORKDataMap_t
Definition: IWORKTypes_fwd.h:54
Definition: IWORKTypes.h:186
Definition: IWORKTypes.h:126
Definition: IWORKTypes.h:44
std::shared_ptr< IWORKTableData > IWORKTableDataPtr_t
Definition: IWORKTypes_fwd.h:78
std::unordered_map< std::string, std::string > IWORKContentMap_t
Definition: IWORKTypes_fwd.h:38
std::shared_ptr< IWORKData > IWORKDataPtr_t
Definition: IWORKTypes_fwd.h:51
std::deque< IWORKColumnRowSize > IWORKRowSizes_t
Definition: IWORKTypes_fwd.h:26
std::deque< IWORKColumnRowSize > IWORKColumnSizes_t
Definition: IWORKTypes_fwd.h:22
std::unordered_map< ID_t, IWORKImagePtr_t > IWORKImageMap_t
Definition: IWORKTypes_fwd.h:64
Definition: IWORKTypes.h:241
Definition: IWORKTypes.h:148
std::unordered_map< std::string, std::string > IWORKFormatNameMap
Definition: IWORKTypes_fwd.h:32
Definition: IWORKTypes.h:52
std::shared_ptr< IWORKTableNameMap_t > IWORKTableNameMapPtr_t
Definition: IWORKTypes_fwd.h:36
std::shared_ptr< IWORKLine > IWORKLinePtr_t
Definition: IWORKTypes_fwd.h:47
Definition: IWORKTypes.h:61
std::string ID_t
Definition: IWORKTypes_fwd.h:20
std::shared_ptr< IWORKImage > IWORKImagePtr_t
Definition: IWORKTypes_fwd.h:61
Definition: IWORKToken.h:418
Definition: IWORKTable.h:31
std::unordered_map< ID_t, IWORKMediaContentPtr_t > IWORKMediaContentMap_t
Definition: IWORKTypes_fwd.h:59
std::shared_ptr< IWORKGroup > IWORKGroupPtr_t
Definition: IWORKTypes_fwd.h:74
std::shared_ptr< IWORKTable > IWORKTablePtr_t
Definition: IWORKTypes_fwd.h:82
std::shared_ptr< IWORKMediaContent > IWORKMediaContentPtr_t
Definition: IWORKTypes_fwd.h:56
std::unordered_map< ID_t, IWORKTablePtr_t > IWORKTableMap_t
Definition: IWORKTypes_fwd.h:84
Definition: IWORKTypes.h:158

Generated for libetonyek by doxygen 1.8.10