Alembic Version 1.1
Foundation.h
Go to the documentation of this file.
1//-*****************************************************************************
2//
3// Copyright (c) 2009-2016,
4// Sony Pictures Imageworks, Inc. and
5// Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
6//
7// All rights reserved.
8//
9// Redistribution and use in source and binary forms, with or without
10// modification, are permitted provided that the following conditions are
11// met:
12// * Redistributions of source code must retain the above copyright
13// notice, this list of conditions and the following disclaimer.
14// * Redistributions in binary form must reproduce the above
15// copyright notice, this list of conditions and the following disclaimer
16// in the documentation and/or other materials provided with the
17// distribution.
18// * Neither the name of Sony Pictures Imageworks, nor
19// Industrial Light & Magic nor the names of their contributors may be used
20// to endorse or promote products derived from this software without specific
21// prior written permission.
22//
23// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34//
35//-*****************************************************************************
36
37#ifndef Alembic_Abc_Foundation_h
38#define Alembic_Abc_Foundation_h
39
41#include <Alembic/Util/All.h>
42
43#include <ImathVec.h>
44#include <ImathBox.h>
45#include <ImathMatrix.h>
46#include <ImathQuat.h>
47#include <ImathColor.h>
48
49#include <iostream>
50#include <string>
51#include <exception>
52
53#include <stdlib.h>
54#include <stdio.h>
55#include <string.h>
56#include <assert.h>
57
58namespace Alembic {
59namespace Abc {
60namespace ALEMBIC_VERSION_NS {
61
62//-*****************************************************************************
63// Bring 'em ALL in.
65using namespace AbcA;
66
67//-*****************************************************************************
75//-*****************************************************************************
77{
81};
82
83//-*****************************************************************************
92//-*****************************************************************************
94{
96};
97
98//-*****************************************************************************
102//-*****************************************************************************
104{
105 kTop
107
108//-*****************************************************************************
111//-*****************************************************************************
113{
115 kSparse
117
118//-*****************************************************************************
119//-*****************************************************************************
120//-*****************************************************************************
121//-*****************************************************************************
122// IMPORTED IMATH TYPES
123//-*****************************************************************************
124//-*****************************************************************************
125//-*****************************************************************************
126using Imath::V2s;
127using Imath::V2i;
128using Imath::V2f;
129using Imath::V2d;
130
131using Imath::V3s;
132using Imath::V3i;
133using Imath::V3f;
134using Imath::V3d;
135
136using Imath::Box2s;
137using Imath::Box2i;
138using Imath::Box2f;
139using Imath::Box2d;
140
141using Imath::Box3s;
142using Imath::Box3i;
143using Imath::Box3f;
144using Imath::Box3d;
145
146using Imath::M33f;
147using Imath::M33d;
148using Imath::M44f;
149using Imath::M44d;
150
151using Imath::Quatf;
152using Imath::Quatd;
153
154using Imath::C3h;
155using Imath::C3f;
156using Imath::C3c;
157
158using Imath::C4h;
159using Imath::C4f;
160using Imath::C4c;
161
162typedef V3f N3f;
163typedef V3d N3d;
164
165//-*****************************************************************************
166//-*****************************************************************************
167// OBJECT EXTRACTION FUNCTIONS
168// These are intrusive methods used by the Abc constructors.
169//-*****************************************************************************
170//-*****************************************************************************
171
172//-*****************************************************************************
175{
176 return iPtr;
177}
178
179//-*****************************************************************************
182{
183 return iPtr;
184}
185
186//-*****************************************************************************
187//-*****************************************************************************
188// OBJECT EXTRACTION FUNCTIONS
189// These are intrusive methods used by the templated Abc constructors.
190//-*****************************************************************************
191//-*****************************************************************************
192
193//-*****************************************************************************
195{
196 return iPtr;
197}
198
199//-*****************************************************************************
201{
202 return iPtr;
203}
204
205//-*****************************************************************************
206//-*****************************************************************************
207// ARCHIVE EXTRACTION FUNCTIONS
208// These are intrusive methods used by the templated Abc constructors.
209//-*****************************************************************************
210//-*****************************************************************************
211
212//-*****************************************************************************
214{
215 return iPtr;
216}
217
218//-*****************************************************************************
220{
221 return iPtr;
222}
223
224} // End namespace ALEMBIC_VERSION_NS
225
226using namespace ALEMBIC_VERSION_NS;
227
228} // End namespace Abc
229} // End namespace Alembic
230
231#endif
#define ALEMBIC_VERSION_NS
Definition: Foundation.h:105
Alembic::Util::shared_ptr< ArchiveWriter > ArchiveWriterPtr
Smart Ptrs to Writers.
Alembic::Util::shared_ptr< CompoundPropertyWriter > CompoundPropertyWriterPtr
Alembic::Util::shared_ptr< ObjectWriter > ObjectWriterPtr
Alembic::Util::shared_ptr< ObjectReader > ObjectReaderPtr
Alembic::Util::shared_ptr< CompoundPropertyReader > CompoundPropertyReaderPtr
Alembic::Util::shared_ptr< ArchiveReader > ArchiveReaderPtr
Smart Ptrs to Readers.
AbcA::ObjectWriterPtr GetObjectWriterPtr(AbcA::ObjectWriterPtr iPtr)
Definition: Foundation.h:194
AbcA::ArchiveReaderPtr GetArchiveReaderPtr(AbcA::ArchiveReaderPtr iPtr)
Definition: Foundation.h:219
AbcA::ArchiveWriterPtr GetArchiveWriterPtr(AbcA::ArchiveWriterPtr iPtr)
Definition: Foundation.h:213
AbcA::CompoundPropertyWriterPtr GetCompoundPropertyWriterPtr(AbcA::CompoundPropertyWriterPtr iPtr)
Definition: Foundation.h:174
AbcA::CompoundPropertyReaderPtr GetCompoundPropertyReaderPtr(AbcA::CompoundPropertyReaderPtr iPtr)
Definition: Foundation.h:181
AbcA::ObjectReaderPtr GetObjectReaderPtr(AbcA::ObjectReaderPtr iPtr)
Definition: Foundation.h:200
Alembic namespace ...
Definition: ArchiveInfo.h:46