mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-21 10:55:33 +03:00
83 lines
2.3 KiB
C++
83 lines
2.3 KiB
C++
// Created on: 1993-01-11
|
|
// Created by: CKY / Contract Toubro-Larsen ( Arun MENON )
|
|
// Copyright (c) 1993-1999 Matra Datavision
|
|
// Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
#ifndef _IGESAppli_ReferenceDesignator_HeaderFile
|
|
#define _IGESAppli_ReferenceDesignator_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
#include <Standard_Integer.hxx>
|
|
#include <IGESData_IGESEntity.hxx>
|
|
class TCollection_HAsciiString;
|
|
|
|
|
|
class IGESAppli_ReferenceDesignator;
|
|
DEFINE_STANDARD_HANDLE(IGESAppli_ReferenceDesignator, IGESData_IGESEntity)
|
|
|
|
//! defines ReferenceDesignator, Type <406> Form <7>
|
|
//! in package IGESAppli
|
|
//! Used to attach a text string containing the value of
|
|
//! a component reference designator to an entity being
|
|
//! used to represent a component.
|
|
class IGESAppli_ReferenceDesignator : public IGESData_IGESEntity
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
Standard_EXPORT IGESAppli_ReferenceDesignator();
|
|
|
|
//! This method is used to set the fields of the class
|
|
//! ReferenceDesignator
|
|
//! - nbPropVal : Number of property values = 1
|
|
//! - aText : Reference designator text
|
|
Standard_EXPORT void Init (const Standard_Integer nbPropVal, const Handle(TCollection_HAsciiString)& aText);
|
|
|
|
//! returns the number of property values
|
|
//! is always 1
|
|
Standard_EXPORT Standard_Integer NbPropertyValues() const;
|
|
|
|
//! returns the Reference designator text
|
|
Standard_EXPORT Handle(TCollection_HAsciiString) RefDesignatorText() const;
|
|
|
|
|
|
|
|
|
|
DEFINE_STANDARD_RTTIEXT(IGESAppli_ReferenceDesignator,IGESData_IGESEntity)
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
Standard_Integer theNbPropertyValues;
|
|
Handle(TCollection_HAsciiString) theRefDesigText;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _IGESAppli_ReferenceDesignator_HeaderFile
|