mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
78 lines
2.5 KiB
C++
78 lines
2.5 KiB
C++
// Created on: 2015-10-29
|
|
// Created by: Irina KRYLOVA
|
|
// Copyright (c) 2015 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 _StepVisual_DraughtingCallout_HeaderFile
|
|
#define _StepVisual_DraughtingCallout_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
#include <StepGeom_GeometricRepresentationItem.hxx>
|
|
#include <StepVisual_HArray1OfDraughtingCalloutElement.hxx>
|
|
|
|
|
|
class StepVisual_DraughtingCallout;
|
|
DEFINE_STANDARD_HANDLE(StepVisual_DraughtingCallout, StepGeom_GeometricRepresentationItem)
|
|
|
|
|
|
class StepVisual_DraughtingCallout : public StepGeom_GeometricRepresentationItem
|
|
{
|
|
public:
|
|
|
|
//! Returns a DraughtingCallout
|
|
Standard_EXPORT StepVisual_DraughtingCallout();
|
|
|
|
//! Init
|
|
Standard_EXPORT void Init (const Handle(TCollection_HAsciiString)& theName,
|
|
const Handle(StepVisual_HArray1OfDraughtingCalloutElement)& theContents);
|
|
|
|
//! Returns field Contents
|
|
inline Handle(StepVisual_HArray1OfDraughtingCalloutElement) Contents () const
|
|
{
|
|
return myContents;
|
|
}
|
|
|
|
//! Set field Contents
|
|
inline void SetContents (const Handle(StepVisual_HArray1OfDraughtingCalloutElement) &theContents)
|
|
{
|
|
myContents = theContents;
|
|
}
|
|
|
|
//! Returns number of Contents
|
|
inline Standard_Integer NbContents () const
|
|
{
|
|
return (myContents.IsNull() ? 0 : myContents->Length());
|
|
}
|
|
|
|
//! Returns Contents with the given number
|
|
inline StepVisual_DraughtingCalloutElement ContentsValue(const Standard_Integer theNum) const
|
|
{
|
|
return myContents->Value(theNum);
|
|
}
|
|
|
|
//! Sets Contents with given number
|
|
inline void SetContentsValue(const Standard_Integer theNum, const StepVisual_DraughtingCalloutElement& theItem)
|
|
{
|
|
myContents->SetValue (theNum, theItem);
|
|
}
|
|
|
|
|
|
DEFINE_STANDARD_RTTIEXT(StepVisual_DraughtingCallout,StepGeom_GeometricRepresentationItem)
|
|
|
|
private:
|
|
Handle(StepVisual_HArray1OfDraughtingCalloutElement) myContents;
|
|
};
|
|
#endif // _StepVisual_DraughtingCallout_HeaderFile
|