Blame IlmImf/ImfForward.h

Packit 0d464f
Packit 0d464f
Packit 0d464f
///////////////////////////////////////////////////////////////////////////
Packit 0d464f
//
Packit 0d464f
// Copyright (c) 2011, Industrial Light & Magic, a division of Lucas
Packit 0d464f
// Digital Ltd. LLC
Packit 0d464f
//
Packit 0d464f
// Portions (c) 2012 Weta Digital Ltd
Packit 0d464f
// 
Packit 0d464f
// All rights reserved.
Packit 0d464f
// 
Packit 0d464f
// Redistribution and use in source and binary forms, with or without
Packit 0d464f
// modification, are permitted provided that the following conditions are
Packit 0d464f
// met:
Packit 0d464f
// *       Redistributions of source code must retain the above copyright
Packit 0d464f
// notice, this list of conditions and the following disclaimer.
Packit 0d464f
// *       Redistributions in binary form must reproduce the above
Packit 0d464f
// copyright notice, this list of conditions and the following disclaimer
Packit 0d464f
// in the documentation and/or other materials provided with the
Packit 0d464f
// distribution.
Packit 0d464f
// *       Neither the name of Industrial Light & Magic nor the names of
Packit 0d464f
// its contributors may be used to endorse or promote products derived
Packit 0d464f
// from this software without specific prior written permission. 
Packit 0d464f
// 
Packit 0d464f
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Packit 0d464f
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
Packit 0d464f
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
Packit 0d464f
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
Packit 0d464f
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
Packit 0d464f
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
Packit 0d464f
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
Packit 0d464f
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
Packit 0d464f
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
Packit 0d464f
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Packit 0d464f
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 0d464f
//
Packit 0d464f
///////////////////////////////////////////////////////////////////////////
Packit 0d464f
Packit 0d464f
#ifndef INCLUDED_IMF_FORWARD_H
Packit 0d464f
#define INCLUDED_IMF_FORWARD_H
Packit 0d464f
Packit 0d464f
////////////////////////////////////////////////////////////////////
Packit 0d464f
//
Packit 0d464f
// Forward declarations for OpenEXR - correctly declares namespace
Packit 0d464f
//
Packit 0d464f
////////////////////////////////////////////////////////////////////
Packit 0d464f
Packit 0d464f
#include "ImfNamespace.h"
Packit 0d464f
Packit 0d464f
OPENEXR_IMF_INTERNAL_NAMESPACE_HEADER_ENTER
Packit 0d464f
Packit 0d464f
Packit 0d464f
// classes for basic types;
Packit 0d464f
template<class T> class Array;
Packit 0d464f
template<class T> class Array2D;
Packit 0d464f
struct Channel;
Packit 0d464f
class  ChannelList;
Packit 0d464f
struct Chromaticities;
Packit 0d464f
Packit 0d464f
// attributes used in headers are TypedAttributes
Packit 0d464f
class Attribute;
Packit 0d464f
Packit 0d464f
class Header;
Packit 0d464f
Packit 0d464f
// file handling classes
Packit 0d464f
class OutputFile;
Packit 0d464f
class TiledInputFile;
Packit 0d464f
class ScanLineInputFile;
Packit 0d464f
class InputFile;
Packit 0d464f
class TiledOutputFile;
Packit 0d464f
class DeepScanLineInputFile;
Packit 0d464f
class DeepScanLineOutputFile;
Packit 0d464f
class DeepTiledInputFile;
Packit 0d464f
class DeepTiledOutputFile;
Packit 0d464f
class AcesInputFile;
Packit 0d464f
class AcesOutputFile;
Packit 0d464f
class TiledInputPart;
Packit 0d464f
class TiledInputFile;
Packit 0d464f
class TileOffsets;
Packit 0d464f
Packit 0d464f
// multipart file handling
Packit 0d464f
class GenericInputFile;
Packit 0d464f
class GenericOutputFile;
Packit 0d464f
class MultiPartInputFile;
Packit 0d464f
class MultiPartOutputFile;
Packit 0d464f
Packit 0d464f
class InputPart;
Packit 0d464f
class TiledInputPart;
Packit 0d464f
class DeepScanLineInputPart;
Packit 0d464f
class DeepTiledInputPart;
Packit 0d464f
Packit 0d464f
class OutputPart;
Packit 0d464f
class ScanLineOutputPart;
Packit 0d464f
class TiledOutputPart;
Packit 0d464f
class DeepScanLineOutputPart;
Packit 0d464f
class DeepTiledOutputPart;
Packit 0d464f
Packit 0d464f
Packit 0d464f
// internal use only
Packit 0d464f
struct InputPartData;
Packit 0d464f
struct OutputStreamMutex;
Packit 0d464f
struct OutputPartData;
Packit 0d464f
struct InputStreamMutex;
Packit 0d464f
Packit 0d464f
// frame buffers
Packit 0d464f
Packit 0d464f
class  FrameBuffer;
Packit 0d464f
class  DeepFrameBuffer;
Packit 0d464f
struct DeepSlice;
Packit 0d464f
Packit 0d464f
// compositing
Packit 0d464f
class DeepCompositing;
Packit 0d464f
class CompositeDeepScanLine;
Packit 0d464f
Packit 0d464f
// preview image
Packit 0d464f
class PreviewImage;
Packit 0d464f
struct PreviewRgba;
Packit 0d464f
Packit 0d464f
// streams
Packit 0d464f
class OStream;
Packit 0d464f
class IStream;
Packit 0d464f
Packit 0d464f
Packit 0d464f
OPENEXR_IMF_INTERNAL_NAMESPACE_HEADER_EXIT
Packit 0d464f
Packit 0d464f
Packit 0d464f
#endif // include guard