Cortex  10.0.0-a4
TypeIds.h
1 //
3 // Copyright 2010 Dr D Studios Pty Limited (ACN 127 184 954) (Dr. D Studios),
4 // its affiliates and/or its licensors.
5 //
6 // Copyright (c) 2010-2014, Image Engine Design Inc. All rights reserved.
7 //
8 // Redistribution and use in source and binary forms, with or without
9 // modification, are permitted provided that the following conditions are
10 // met:
11 //
12 // * Redistributions of source code must retain the above copyright
13 // notice, this list of conditions and the following disclaimer.
14 //
15 // * Redistributions in binary form must reproduce the above copyright
16 // notice, this list of conditions and the following disclaimer in the
17 // documentation and/or other materials provided with the distribution.
18 //
19 // * Neither the name of Image Engine Design nor the names of any
20 // other contributors to this software may be used to endorse or
21 // promote products derived from this software without specific prior
22 // written permission.
23 //
24 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
25 // IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
26 // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
27 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
28 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
30 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
31 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
32 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
33 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
34 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 //
37 
38 #ifndef IECOREHOUDINI_TYPEIDS_H
39 #define IECOREHOUDINI_TYPEIDS_H
40 
41 namespace IECoreHoudini
42 {
43 
45  enum TypeId
46  {
47  FromHoudiniConverterTypeId = 111000,
48  FromHoudiniGeometryConverterTypeId = 111001,
49  FromHoudiniPointsConverterTypeId = 111002,
50  FromHoudiniPolygonsConverterTypeId = 111003,
51  ToHoudiniConverterTypeId = 111004,
52  ToHoudiniGeometryConverterTypeId = 111005,
53  ToHoudiniPointsConverterTypeId = 111006,
54  ToHoudiniPolygonsConverterTypeId = 111007,
55  FromHoudiniCurvesConverterTypeId = 111008,
56  ToHoudiniCurvesConverterTypeId = 111009,
57  ToHoudiniAttribConverterTypeId = 111010,
58  ToHoudiniFloatDetailAttribConverterTypeId = 111011,
59  ToHoudiniV2fDetailAttribConverterTypeId = 111012,
60  ToHoudiniV3fDetailAttribConverterTypeId = 111013,
61  ToHoudiniColor3fDetailAttribConverterTypeId = 111014,
62  ToHoudiniIntDetailAttribConverterTypeId = 111015,
63  ToHoudiniV2iDetailAttribConverterTypeId = 111016,
64  ToHoudiniV3iDetailAttribConverterTypeId = 111017,
65  ToHoudiniFloatVectorAttribConverterTypeId = 111018,
66  ToHoudiniV2fVectorAttribConverterTypeId = 111019,
67  ToHoudiniV3fVectorAttribConverterTypeId = 111020,
68  ToHoudiniColor3fVectorAttribConverterTypeId = 111021,
69  ToHoudiniIntVectorAttribConverterTypeId = 111022,
70  ToHoudiniV2iVectorAttribConverterTypeId = 111023,
71  ToHoudiniV3iVectorAttribConverterTypeId = 111024,
72  FromHoudiniGroupConverterTypeId = 111025,
73  ToHoudiniGroupConverterTypeId = 111026,
74  ToHoudiniStringDetailAttribConverterTypeId = 111027,
75  ToHoudiniStringVectorAttribConverterTypeId = 111028,
76  RATDeepImageReaderTypeId = 111029, // obsolete - available for reuse
77  RATDeepImageWriterTypeId = 111030, // obsolete - available for reuse
78  LiveSceneTypeId = 111031,
79  FromHoudiniCortexObjectConverterTypeId = 111032,
80  ToHoudiniCortexObjectConverterTypeId = 111033,
81  FromHoudiniCompoundObjectConverterTypeId = 111034,
82  ToHoudiniCompoundObjectConverterTypeId = 111035,
83  ToHoudiniQuatVectorAttribConverterTypeId = 111036,
84  ToHoudiniM33fDetailAttribConverterTypeId = 111037,
85  ToHoudiniM44fDetailAttribConverterTypeId = 111038,
86  ToHoudiniM33fVectorAttribConverterTypeId = 111039,
87  ToHoudiniM44fVectorAttribConverterTypeId = 111040,
88  // remember to update TypeIdBinding.cpp
89  LastTypeId = 111999,
90  };
91 
92 } // namespace IECoreHoudini
93 
94 #endif /* IECOREHOUDINI_TYPEIDS_H */
The IECoreHoudini namespace holds all the functionality of libIECoreHoudini.
Definition: CoreHoudini.h:51
TypeId
Define Cortex Type Ids for our converter class.
Definition: TypeIds.h:45