blob: 1c25bc14c44eb06611a205252d9a6d3191e67430 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// File: IGESControl_ToolContainer.cxx
// Created: Tue Feb 8 09:30:22 2000
// Author: data exchange team
// <det@kinox>
#include <IGESControl_ToolContainer.ixx>
#include <IGESControl_IGESBoundary.hxx>
//=======================================================================
//function : IGESControl_ToolContainer
//purpose :
//=======================================================================
IGESControl_ToolContainer::IGESControl_ToolContainer():IGESToBRep_ToolContainer()
{
}
//=======================================================================
//function : IGESBoundary
//purpose :
//=======================================================================
Handle(IGESToBRep_IGESBoundary) IGESControl_ToolContainer::IGESBoundary() const
{
return new IGESControl_IGESBoundary;
}
|