MeVisLab Toolbox Reference
SbSet.h
Go to the documentation of this file.
1 /*
2  *
3  _______________________________________________________________________
4  ____________ W W W . A W A K E I D E A S . C O M ______________
5  |
6  |
7  | Description:
8  | ...
9  |
10  | Author(s) : Felix Ritter
11  |
12  ____________ W W W . A W A K E I D E A S . C O M ______________
13  _______________________________________________________________________
14  */
15 
16 #ifndef _SbSet_H
17 #define _SbSet_H
18 
19 #include "SoShadowSystem.h"
20 #include <set>
21 
23 
24 template <class _Tp, class _Cmp>
25 class SOSHADOW_CLASS_SPEC SbSet : public std::set<_Tp, _Cmp>
26 {
27  typedef std::set<_Tp, _Cmp> inherited;
28  typedef SbSet<_Tp, _Cmp> self;
29 };
30 
32 
33 #endif // _SbSet_H
#define __MEVIS_IV_END_NAMESPACE
Definition: OIVConfig.h:40
#define __MEVIS_IV_BEGIN_NAMESPACE
Definition: OIVConfig.h:39
#define SOSHADOW_CLASS_SPEC
Define a class export specifier needed to make the class exportable in dll's.
Definition: SbSet.h:26