blob: 563392b00c4c85d753747e2336d4c43c580cbf8c (
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
|
// File: ShapeProcess_UOperator.cxx
// Created: Tue Aug 22 13:29:08 2000
// Author: Andrey BETENEV
// <abv@nnov.matra-dtv.fr>
#include <ShapeProcess_UOperator.ixx>
//=======================================================================
//function : ShapeProcess_UOperator
//purpose :
//=======================================================================
ShapeProcess_UOperator::ShapeProcess_UOperator (const ShapeProcess_OperFunc func) : myFunc(func)
{
}
//=======================================================================
//function : Perform
//purpose :
//=======================================================================
Standard_Boolean ShapeProcess_UOperator::Perform (const Handle(ShapeProcess_Context)& context)
{
return myFunc ( context );
}
|