00001 /*************************************************************************** 00002 * Copyright (C) 2005 by Robot Group Leipzig * 00003 * martius@informatik.uni-leipzig.de * 00004 * fhesse@informatik.uni-leipzig.de * 00005 * der@informatik.uni-leipzig.de * 00006 * * 00007 * This program is free software; you can redistribute it and/or modify * 00008 * it under the terms of the GNU General Public License as published by * 00009 * the Free Software Foundation; either version 2 of the License, or * 00010 * (at your option) any later version. * 00011 * * 00012 * This program is distributed in the hope that it will be useful, * 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00015 * GNU General Public License for more details. * 00016 * * 00017 * You should have received a copy of the GNU General Public License * 00018 * along with this program; if not, write to the * 00019 * Free Software Foundation, Inc., * 00020 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * 00021 *************************************************************************** 00022 * * 00023 * Declares some common osg classes in forward declaration. * 00024 * This saves a lot of compile time if included in header files * 00025 * instead of the real osg header files. * 00026 * * 00027 * $Log: osgforwarddecl.h,v $ 00028 * Revision 1.3 2007/11/07 13:18:04 martius 00029 * vec4 00030 * 00031 * Revision 1.2 2006/07/14 12:23:35 martius 00032 * selforg becomes HEAD 00033 * 00034 * Revision 1.1.2.3 2006/01/12 14:21:00 martius 00035 * drawmode, material 00036 * 00037 * Revision 1.1.2.2 2005/12/14 15:36:45 martius 00038 * joints are visible now 00039 * 00040 * Revision 1.1.2.1 2005/12/13 18:11:13 martius 00041 * transform primitive added, some joints stuff done, forward declaration 00042 * 00043 * Revision 1.1.2.1 2005/12/06 17:38:21 martius 00044 * *** empty log message *** 00045 * 00046 * * 00047 ***************************************************************************/ 00048 #ifndef __OSGFORWARDDECL_H 00049 #define __OSGFORWARDDECL_H 00050 00051 namespace osg{ 00052 class Geode; 00053 class Group; 00054 00055 class ShapeDrawable; 00056 class TessellationHints; 00057 class StateSet; 00058 class BlendFunc; 00059 class LightSource; 00060 00061 class Texture2D; 00062 class TexGen; 00063 00064 00065 class Vec3f; 00066 typedef Vec3f Vec3; 00067 class Vec4f; 00068 typedef Vec4f Vec4; 00069 00070 class Matrixd; 00071 typedef Matrixd Matrix; 00072 00073 class Transform; 00074 class MatrixTransform; 00075 00076 } 00077 00078 #endif