0026912: CLang 3.6.2 compiler warning [-Winconsistent-missing-override]
[occt.git] / src / StepElement / StepElement_ElementDescriptor.cxx
CommitLineData
b311480e 1// Created on: 2002-12-12
2// Created by: data exchange team
973c2be1 3// Copyright (c) 2002-2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
b311480e 15
7fd59977 16// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
7fd59977 17
42cf5bc1 18#include <Standard_Type.hxx>
19#include <StepElement_ElementDescriptor.hxx>
20#include <TCollection_HAsciiString.hxx>
7fd59977 21
22//=======================================================================
23//function : StepElement_ElementDescriptor
24//purpose :
25//=======================================================================
7fd59977 26StepElement_ElementDescriptor::StepElement_ElementDescriptor ()
27{
28}
29
30//=======================================================================
31//function : Init
32//purpose :
33//=======================================================================
34
35void StepElement_ElementDescriptor::Init (const StepElement_ElementOrder aTopologyOrder,
36 const Handle(TCollection_HAsciiString) &aDescription)
37{
38
39 theTopologyOrder = aTopologyOrder;
40
41 theDescription = aDescription;
42}
43
44//=======================================================================
45//function : TopologyOrder
46//purpose :
47//=======================================================================
48
49StepElement_ElementOrder StepElement_ElementDescriptor::TopologyOrder () const
50{
51 return theTopologyOrder;
52}
53
54//=======================================================================
55//function : SetTopologyOrder
56//purpose :
57//=======================================================================
58
59void StepElement_ElementDescriptor::SetTopologyOrder (const StepElement_ElementOrder aTopologyOrder)
60{
61 theTopologyOrder = aTopologyOrder;
62}
63
64//=======================================================================
65//function : Description
66//purpose :
67//=======================================================================
68
69Handle(TCollection_HAsciiString) StepElement_ElementDescriptor::Description () const
70{
71 return theDescription;
72}
73
74//=======================================================================
75//function : SetDescription
76//purpose :
77//=======================================================================
78
79void StepElement_ElementDescriptor::SetDescription (const Handle(TCollection_HAsciiString) &aDescription)
80{
81 theDescription = aDescription;
82}