1 /*---------------------------------------------------------------------------*\
5 * Authors: David Kabala *
7 \*---------------------------------------------------------------------------*/
8 /*---------------------------------------------------------------------------*\
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. *
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. *
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. *
24 \*---------------------------------------------------------------------------*/
26 #ifndef _OSGFIELDCONTAINERMAPFIELDS_H_
27 #define _OSGFIELDCONTAINERMAPFIELDS_H_
29 #include "OSGSField.h"
30 #include "OSGMField.h"
31 #include "OSGFieldContainerMapFieldTraits.h"
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
53 #endif // _OSGFIELDCONTAINERMAPFIELDS_H_