Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:05:34

0001 // Created on: 2015-08-06
0002 // Created by: Ilya Novikov
0003 // Copyright (c) 2004-2014 OPEN CASCADE SAS
0004 //
0005 // This file is part of Open CASCADE Technology software library.
0006 //
0007 // This library is free software; you can redistribute it and/or modify it under
0008 // the terms of the GNU Lesser General Public License version 2.1 as published
0009 // by the Free Software Foundation, with special exception defined in the file
0010 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0011 // distribution for complete text of the license and disclaimer of any warranty.
0012 //
0013 // Alternatively, this file may be used under the terms of Open CASCADE
0014 // commercial license or contractual agreement.
0015 
0016 #ifndef _XCAFDoc_GeomTolerance_HeaderFile
0017 #define _XCAFDoc_GeomTolerance_HeaderFile
0018 
0019 #include <Standard.hxx>
0020 #include <Standard_Type.hxx>
0021 
0022 #include <TDataStd_GenericEmpty.hxx>
0023 class Standard_GUID;
0024 class TDF_Label;
0025 class XCAFDimTolObjects_GeomToleranceObject;
0026 
0027 // resolve name collisions with WinAPI headers
0028 #ifdef GetObject
0029   #undef GetObject
0030 #endif
0031 
0032 class XCAFDoc_GeomTolerance;
0033 DEFINE_STANDARD_HANDLE(XCAFDoc_GeomTolerance, TDataStd_GenericEmpty)
0034 
0035 //! Attribute to store dimension and tolerance
0036 class XCAFDoc_GeomTolerance : public TDataStd_GenericEmpty
0037 {
0038 
0039 public:
0040 
0041   
0042   Standard_EXPORT XCAFDoc_GeomTolerance();
0043   
0044   Standard_EXPORT XCAFDoc_GeomTolerance(const Handle(XCAFDoc_GeomTolerance)& theObj);
0045   
0046   Standard_EXPORT static const Standard_GUID& GetID();
0047   
0048   Standard_EXPORT static Handle(XCAFDoc_GeomTolerance) Set (const TDF_Label& theLabel);
0049   
0050   //! Updates parent's label and its sub-labels with data taken from theGeomToleranceObject.
0051   //! Old data associated with the label will be lost.
0052   Standard_EXPORT void SetObject(const Handle(XCAFDimTolObjects_GeomToleranceObject)& theGeomToleranceObject);
0053   
0054   //! Returns geometry tolerance object data taken from the paren's label and its sub-labels.
0055   Standard_EXPORT Handle(XCAFDimTolObjects_GeomToleranceObject) GetObject() const;
0056   
0057   Standard_EXPORT const Standard_GUID& ID() const Standard_OVERRIDE;
0058   
0059   //! Dumps the content of me into the stream
0060   Standard_EXPORT virtual void DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth = -1) const Standard_OVERRIDE;
0061 
0062   DEFINE_DERIVED_ATTRIBUTE(XCAFDoc_GeomTolerance,TDataStd_GenericEmpty)
0063 };
0064 
0065 #endif