#ifndef Magnum_SceneGraph_SceneGraph_h #define Magnum_SceneGraph_SceneGraph_h /* Copyright © 2010, 2011, 2012 Vladimír Vondruš This file is part of Magnum. Magnum is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License version 3 only, as published by the Free Software Foundation. Magnum is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License version 3 for more details. */ /** @file * @brief Forward declarations for Magnum::SceneGraph namespace */ #include #include "Magnum.h" #include "corradeCompatibility.h" namespace Magnum { namespace SceneGraph { /** @todoc remove when doxygen is sane again */ #ifndef DOXYGEN_GENERATING_OUTPUT enum class AspectRatioPolicy: std::uint8_t; template class AbstractCamera; #ifndef CORRADE_GCC46_COMPATIBILITY template using AbstractCamera2D = AbstractCamera<2, T>; template using AbstractCamera3D = AbstractCamera<3, T>; #endif template class AbstractFeature; #ifndef CORRADE_GCC46_COMPATIBILITY template using AbstractFeature2D = AbstractFeature<2, T>; template using AbstractFeature3D = AbstractFeature<3, T>; #endif template class AbstractGroupedFeature; #ifndef CORRADE_GCC46_COMPATIBILITY template using AbstractGroupedFeature2D = AbstractGroupedFeature<2, Derived, T>; template using AbstractGroupedFeature3D = AbstractGroupedFeature<3, Derived, T>; #endif template class AbstractObject; #ifndef CORRADE_GCC46_COMPATIBILITY template using AbstractObject2D = AbstractObject<2, T>; template using AbstractObject3D = AbstractObject<3, T>; #endif enum class TransformationType: std::uint8_t; template class AbstractTransformation; #ifndef CORRADE_GCC46_COMPATIBILITY template using AbstractTransformation2D = AbstractTransformation<2, T>; template using AbstractTransformation3D = AbstractTransformation<3, T>; #endif template class AbstractTranslationRotation2D; template class AbstractTranslationRotation3D; template class AbstractTranslationRotationScaling2D; template class AbstractTranslationRotationScaling3D; template class Animable; #ifndef CORRADE_GCC46_COMPATIBILITY template using Animable2D = Animable<2, T>; template using Animable3D = Animable<3, T>; #endif enum class AnimationState: std::uint8_t; template class AnimableGroup; #ifndef CORRADE_GCC46_COMPATIBILITY template using AnimableGroup2D = AnimableGroup<2, T>; template using AnimableGroup3D = AnimableGroup<3, T>; #endif template class Camera2D; template class Camera3D; template class Drawable; #ifndef CORRADE_GCC46_COMPATIBILITY template using Drawable2D = Drawable<2, T>; template using Drawable3D = Drawable<3, T>; #endif template class EuclideanMatrixTransformation2D; template class EuclideanMatrixTransformation3D; template class FeatureGroup; #ifndef CORRADE_GCC46_COMPATIBILITY template using FeatureGroup2D = FeatureGroup<2, Feature, T>; template using FeatureGroup3D = FeatureGroup<3, Feature, T>; #endif #ifndef CORRADE_GCC46_COMPATIBILITY template using DrawableGroup = FeatureGroup, T>; template using DrawableGroup2D = DrawableGroup<2, T>; template using DrawableGroup3D = DrawableGroup<3, T>; #else template class DrawableGroup; #endif template class MatrixTransformation2D; template class MatrixTransformation3D; template class Object; template class Scene; #endif }} #endif