blob: 1705fbf86796d8c43a3c3b9b7cef3cc31246ca61 (
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
|
// File: TopTools.cxx
// Created: Wed Jan 20 20:04:06 1993
// Author: Remi LEQUETTE
// <rle@phylox>
#include <TopTools.ixx>
#include <TopTools_ShapeSet.hxx>
//=======================================================================
//function : Dump
//purpose :
//=======================================================================
void TopTools::Dump(const TopoDS_Shape& Sh, Standard_OStream& S)
{
TopTools_ShapeSet SSet;
SSet.Add(Sh);
SSet.Dump(Sh,S);
SSet.Dump(S);
}
void TopTools::Dummy(const Standard_Integer)
{
}
|