mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-08 18:40:55 +03:00
20 lines
423 B
C++
Executable File
20 lines
423 B
C++
Executable File
// 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
|