1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-06 10:36:12 +03:00
occt/src/IGESData/IGESData_UndefinedEntity.hxx
abv 92efcf78a6 0026936: Drawbacks of inlining in new type system in OCCT 7.0 -- automatic
Automatic restore of IMPLEMENT_STANDARD_RTTIEXT macro (upgrade -rtti)
2015-12-04 14:15:06 +03:00

132 lines
4.6 KiB
C++

// Created on: 1992-04-07
// Created by: Christian CAILLET
// Copyright (c) 1992-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 _IGESData_UndefinedEntity_HeaderFile
#define _IGESData_UndefinedEntity_HeaderFile
#include <Standard.hxx>
#include <Standard_Type.hxx>
#include <Standard_Integer.hxx>
#include <IGESData_IGESEntity.hxx>
#include <Standard_Boolean.hxx>
#include <IGESData_DefType.hxx>
#include <IGESData_DefList.hxx>
class Interface_UndefinedContent;
class IGESData_IGESReaderData;
class IGESData_DirPart;
class Interface_Check;
class IGESData_ParamReader;
class IGESData_IGESWriter;
class IGESData_UndefinedEntity;
DEFINE_STANDARD_HANDLE(IGESData_UndefinedEntity, IGESData_IGESEntity)
//! undefined (unknown or error) entity specific of IGES
//! DirPart can be correct or not : if it is not, a flag indicates
//! it, and each corrupted field has an associated error flag
class IGESData_UndefinedEntity : public IGESData_IGESEntity
{
public:
//! creates an unknown entity
Standard_EXPORT IGESData_UndefinedEntity();
//! Returns own data as an UndefinedContent
Standard_EXPORT Handle(Interface_UndefinedContent) UndefinedContent() const;
//! Returns own data as an UndefinedContent, in order to touch it
Standard_EXPORT Handle(Interface_UndefinedContent) ChangeableContent();
//! Redefines a completely new UndefinedContent
//! Used by a Copy which begins by ShallowCopy, for instance
Standard_EXPORT void SetNewContent (const Handle(Interface_UndefinedContent)& cont);
//! says if DirPart is OK or not (if not, it is erroneous)
//! Note that if it is not, Def* methods can return Error status
Standard_EXPORT Standard_Boolean IsOKDirPart() const;
//! returns Directory Error Status (used for Copy)
Standard_EXPORT Standard_Integer DirStatus() const;
//! Erases the Directory Error Status
//! Warning : Be sure that data are consistent to call this method ...
Standard_EXPORT void SetOKDirPart();
//! returns Error status if necessary, else calls original method
Standard_EXPORT virtual IGESData_DefType DefLineFont() const Standard_OVERRIDE;
//! returns Error status if necessary, else calls original method
Standard_EXPORT virtual IGESData_DefList DefLevel() const Standard_OVERRIDE;
//! returns Error status if necessary, else calls original method
Standard_EXPORT virtual IGESData_DefList DefView() const Standard_OVERRIDE;
//! returns Error status if necessary, else calls original method
Standard_EXPORT virtual IGESData_DefType DefColor() const Standard_OVERRIDE;
//! returns Error status if necessary, else calls original method
//! (that is, if SubScript field is not blank or positive integer)
Standard_EXPORT virtual Standard_Boolean HasSubScriptNumber() const Standard_OVERRIDE;
//! Computes the Directory Error Status, to be called before
//! standard ReadDir from IGESReaderTool
//! Returns True if OK (hence, Directory can be loaded),
//! Else returns False and the DirPart <DP> is modified
//! (hence, Directory Error Status is non null; and standard Read
//! will work with an acceptable DirectoryPart)
Standard_EXPORT virtual Standard_Boolean ReadDir (const Handle(IGESData_IGESReaderData)& IR, IGESData_DirPart& DP, Handle(Interface_Check)& ach);
//! reads own parameters from file; PR gives access to them, IR
//! detains parameter types and values
//! Here, reads all parameters, integers are considered as entity
//! reference unless they cannot be; no list interpretation
//! No property or associativity list is managed
Standard_EXPORT virtual void ReadOwnParams (const Handle(IGESData_IGESReaderData)& IR, IGESData_ParamReader& PR);
//! writes parameters to IGESWriter, taken from UndefinedContent
Standard_EXPORT virtual void WriteOwnParams (IGESData_IGESWriter& IW) const;
DEFINE_STANDARD_RTTIEXT(IGESData_UndefinedEntity,IGESData_IGESEntity)
protected:
private:
Standard_Integer thedstat;
Handle(Interface_UndefinedContent) thecont;
};
#endif // _IGESData_UndefinedEntity_HeaderFile