blob: 75682e6980c21adec243da6d69baeb6133601f89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// File: VrmlData_MapOfNode.hxx
// Created: 22.07.07 09:12
// Author: Alexander GRIGORIEV
// Copyright: Open Cascade 2007
#ifndef VrmlData_MapOfNode_HeaderFile
#define VrmlData_MapOfNode_HeaderFile
#include <NCollection_Map.hxx>
#include <VrmlData_Node.hxx>
/**
* Container of Map type, holding handles to VrmlData_Node objects
*/
typedef NCollection_Map<Handle_VrmlData_Node> VrmlData_MapOfNode;
#endif
|