blob: e20acc11e09969d6ce99103d03cf03317eaa59c8 (
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
|
#include <RWStepVisual_RWColour.ixx>
RWStepVisual_RWColour::RWStepVisual_RWColour () {}
void RWStepVisual_RWColour::ReadStep
(const Handle(StepData_StepReaderData)& data,
const Standard_Integer num,
Handle(Interface_Check)& ach,
const Handle(StepVisual_Colour)& ent) const
{
// --- Number of Parameter Control ---
if (!data->CheckNbParams(num,0,ach,"colour")) return;
//--- Initialisation of the read entity ---
}
void RWStepVisual_RWColour::WriteStep
(StepData_StepWriter& SW,
const Handle(StepVisual_Colour)& ent) const
{
}
|