mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-26 10:19:45 +03:00
71 lines
2.5 KiB
C++
Executable File
71 lines
2.5 KiB
C++
Executable File
// Copyright (c) 1999-2012 OPEN CASCADE SAS
|
|
//
|
|
// The content of this file is subject to the Open CASCADE Technology Public
|
|
// License Version 6.5 (the "License"). You may not use the content of this file
|
|
// except in compliance with the License. Please obtain a copy of the License
|
|
// at http://www.opencascade.org and read it completely before using this file.
|
|
//
|
|
// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
|
|
// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
|
|
//
|
|
// The Original Code and all software distributed under the License is
|
|
// distributed on an "AS IS" basis, without warranty of any kind, and the
|
|
// Initial Developer hereby disclaims all such warranties, including without
|
|
// limitation, any warranties of merchantability, fitness for a particular
|
|
// purpose or non-infringement. Please see the License for the specific terms
|
|
// and conditions governing the rights and limitations under the License.
|
|
|
|
#include <StepData_SelectNamed.ixx>
|
|
|
|
// Definitions reprises de Field :
|
|
#define KindInteger 1
|
|
#define KindBoolean 2
|
|
#define KindLogical 3
|
|
#define KindEnum 4
|
|
#define KindReal 5
|
|
#define KindString 6
|
|
|
|
StepData_SelectNamed::StepData_SelectNamed ()
|
|
{ theval.Clear(); thename.Clear(); }
|
|
|
|
|
|
Standard_Boolean StepData_SelectNamed::HasName () const
|
|
{ return (thename.Length() > 0); }
|
|
|
|
Standard_CString StepData_SelectNamed::Name () const
|
|
{ return thename.ToCString(); }
|
|
|
|
Standard_Boolean StepData_SelectNamed::SetName (const Standard_CString name)
|
|
{ thename.Clear(); thename.AssignCat (name); return Standard_True; }
|
|
|
|
const StepData_Field& StepData_SelectNamed::Field () const
|
|
{ return theval; }
|
|
|
|
StepData_Field& StepData_SelectNamed::CField ()
|
|
{ return theval; }
|
|
|
|
|
|
Standard_Integer StepData_SelectNamed::Kind () const
|
|
{ return theval.Kind(); }
|
|
|
|
void StepData_SelectNamed::SetKind (const Standard_Integer kind)
|
|
{ theval.Clear (kind); }
|
|
|
|
Standard_Integer StepData_SelectNamed::Int () const
|
|
{ return theval.Int(); }
|
|
|
|
void StepData_SelectNamed::SetInt (const Standard_Integer val)
|
|
{ theval.SetInt (val); }
|
|
|
|
Standard_Real StepData_SelectNamed::Real () const
|
|
{ return theval.Real(); }
|
|
|
|
void StepData_SelectNamed::SetReal (const Standard_Real val)
|
|
{ theval.SetReal (val); }
|
|
|
|
Standard_CString StepData_SelectNamed::String () const
|
|
{ return theval.String(); }
|
|
|
|
void StepData_SelectNamed::SetString (const Standard_CString val)
|
|
{ theval.SetString (val); }
|