blob: 92410bfbc196058025cfc22133d310e46b110486 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// File: STEPSelections_AssemblyComponent.cxx
// Created: Wed Mar 24 16:03:32 1999
// Author: data exchange team
// <det@friendox.nnov.matra-dtv.fr>
#include <STEPSelections_AssemblyComponent.ixx>
STEPSelections_AssemblyComponent::STEPSelections_AssemblyComponent()
{
}
STEPSelections_AssemblyComponent::STEPSelections_AssemblyComponent(const Handle(StepShape_ShapeDefinitionRepresentation)& sdr,
const Handle(STEPSelections_HSequenceOfAssemblyLink)& list)
{
mySDR = sdr;
myList = list;
}
|