Open Inventor Release 2024.1.0
 
Loading...
Searching...
No Matches
SoLDM.h
Go to the documentation of this file.
1/*=======================================================================
2 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), ***
3 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. ***
4 *** ***
5 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS ***
6 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR ***
7 *** WRITTEN AUTHORIZATION OF FEI S.A.S. ***
8 *** ***
9 *** RESTRICTED RIGHTS LEGEND ***
10 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS ***
11 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN ***
12 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT ***
13 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN ***
14 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. ***
15 *** ***
16 *** COPYRIGHT (C) 1996-2014 BY FEI S.A.S, ***
17 *** BORDEAUX, FRANCE ***
18 *** ALL RIGHTS RESERVED ***
19**=======================================================================*/
20/*=======================================================================
21** Author : VSG (MMM YYYY)
22**=======================================================================*/
23/*===============================================================================*/
24
25
26#ifndef SO_LDM_H
27#define SO_LDM_H
28
29#include <LDM/SoLDMTileID.h>
30#include <LDM/SoLDMLibName.h>
31
32#include <Inventor/STL/vector>
33#include <Inventor/STL/set>
34#include <Inventor/STL/pair>
35
36// On Windows the "comment" pragma will automatically add our LDM
37//library to the application's link string.
38#ifdef _WIN32
39# ifndef LDM_EXPORTS
40# ifndef OIV_DISABLE_AUTOLINK
41# pragma comment(lib,__LDMLIB)
42# endif
43# endif
44#endif // _WIN32
45
46#include <Inventor/SoModule.h>
47SO_MODULE_HEADER(SoLDM, __LDMDLL)
48
49class SoDataSet;
50
51namespace SoLDM
52{
56 typedef std::vector<SoDataSet*> DsVector;
57
61 typedef DsVector::iterator DsVectorIt;
62
66 typedef std::set<SoDataSet*> DsSet;
67
71 typedef std::pair<SoDataSet*, int> DataSetIdPair;
72
76 typedef std::vector<DataSetIdPair> DataSetIdPairList;
77
81 typedef std::vector<SoLDMTileID> TileIdVector;
82}
83
84#endif // SO_LDM_H
85
86
#define __LDMDLL
<a href="IconLegend.html"><img src="extLDM.gif" alt="Large Data Management" border="0"></a> Data set...
Definition SoDataSet.h:139
Definition SoLDM.h:52
std::pair< SoDataSet *, int > DataSetIdPair
Pair containing an SoDataset and its dataSetId.
Definition SoLDM.h:71
std::vector< DataSetIdPair > DataSetIdPairList
List of DataSetIdPair.
Definition SoLDM.h:76
std::set< SoDataSet * > DsSet
Set of SoDataSet.
Definition SoLDM.h:66
std::vector< SoDataSet * > DsVector
Vector of SoDataSet.
Definition SoLDM.h:56
DsVector::iterator DsVectorIt
Iterator for DsVector.
Definition SoLDM.h:61
std::vector< SoLDMTileID > TileIdVector
Vector of SoLDMTileID.
Definition SoLDM.h:81