changed: gcc8 base update
[opensg.git] / Source / Base / FieldContainer / Fields / OSGFieldContainerMapFields.h
blobb258d3e03f943f3d27b59ddce25bc1fd1a6a4612
1 /*---------------------------------------------------------------------------*\
2 * OpenSG Toolbox *
3 * *
4 * *
5 * Authors: David Kabala *
6 * *
7 \*---------------------------------------------------------------------------*/
8 /*---------------------------------------------------------------------------*\
9 * License *
10 * *
11 * This library is free software; you can redistribute it and/or modify it *
12 * under the terms of the GNU Library General Public License as published *
13 * by the Free Software Foundation, version 2. *
14 * *
15 * This library is distributed in the hope that it will be useful, but *
16 * WITHOUT ANY WARRANTY; without even the implied warranty of *
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
18 * Library General Public License for more details. *
19 * *
20 * You should have received a copy of the GNU Library General Public *
21 * License along with this library; if not, write to the Free Software *
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
23 * *
24 \*---------------------------------------------------------------------------*/
26 #ifndef _OSGFIELDCONTAINERMAPFIELDS_H_
27 #define _OSGFIELDCONTAINERMAPFIELDS_H_
29 #include "OSGSField.h"
30 #include "OSGMField.h"
31 #include "OSGFieldContainerMapFieldTraits.h"
33 OSG_BEGIN_NAMESPACE
35 #ifndef DOXYGEN_SHOULD_SKIP_THIS
37 // Here the actual Field types are declared
38 // You don't always have to have both, either is fine
40 typedef SField<FieldContainerMap> SFFieldContainerMap;
41 typedef MField<FieldContainerMap> MFFieldContainerMap;
43 #else // these are the doxygen hacks
45 /*! \ingroup GrpBaseFieldSingle \ingroup GrpLibOSGBase */
46 struct SFFieldContainerMap : public SField<FieldContainerMap> {};
47 struct MFFieldContainerMap : public MField<FieldContainerMap> {};
49 #endif // these are the doxygen hacks
51 OSG_END_NAMESPACE
53 #endif // _OSGFIELDCONTAINERMAPFIELDS_H_