1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-09 18:50:54 +03:00
occt/src/Interface/Interface_ReportEntity.hxx
aml b9280b8b27 0032969: Coding - get rid of unused headers [IMeshData to PLib]
Removed unused exception classes OSD_Exception_FLT_DIVIDE_BY_ZERO, OSD_Exception_INT_DIVIDE_BY_ZERO, OSD_Exception_FLT_DENORMAL_OPERAND, OSD_Exception_FLT_INEXACT_RESULT, OSD_Exception_FLT_INVALID_OPERATION, OSD_Exception_FLT_OVERFLOW, OSD_Exception_FLT_STACK_CHECK, OSD_Exception_FLT_UNDERFLOW.
2022-05-17 20:09:12 +03:00

132 lines
4.6 KiB
C++

// Created on: 1993-02-05
// Created by: Christian CAILLET
// 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 _Interface_ReportEntity_HeaderFile
#define _Interface_ReportEntity_HeaderFile
#include <Standard.hxx>
#include <Standard_Type.hxx>
#include <Standard_Transient.hxx>
class Interface_Check;
class Interface_ReportEntity;
DEFINE_STANDARD_HANDLE(Interface_ReportEntity, Standard_Transient)
//! A ReportEntity is produced to aknowledge and memorize the
//! binding between a Check and an Entity. The Check can bring
//! Fails (+ Warnings if any), or only Warnings. If it is empty,
//! the Report Entity is for an Unknown Entity.
//!
//! The ReportEntity brings : the Concerned Entity, the
//! Check, and if the Entity is empty (Fails due to Read
//! Errors, hence the Entity could not be loaded), a Content.
//! The Content is itself an Transient Object, but remains in a
//! literal form : it is an "Unknown Entity". If the Concerned
//! Entity is itself Unknown, Concerned and Content are equal.
//!
//! According to the Check, if it brings Fail messages,
//! the ReportEntity is an "Error Entity", the Concerned Entity is
//! an "Erroneous Entity". Else it is a "Correction Entity", the
//! Concerned Entity is a "Corrected Entity". With no Check
//! message and if Concerned and Content are equal, it reports
//! for an "Unknown Entity".
//!
//! Each norm must produce its own type of Unknown Entity, but can
//! use the class UndefinedContent to brings parameters : it is
//! enough for most of information and avoids to redefine them,
//! only the specific part remains to be defined for each norm.
class Interface_ReportEntity : public Standard_Transient
{
public:
//! Creates a ReportEntity for an Unknown Entity : Check is empty,
//! and Concerned equates Content (i.e. the Unknown Entity)
Standard_EXPORT Interface_ReportEntity(const Handle(Standard_Transient)& unknown);
//! Creates a ReportEntity with its features :
//! - <acheck> is the Check to be memorised
//! - <concerned> is the Entity to which the Check is bound
//! Later, a Content can be set : it is required for an Error
Standard_EXPORT Interface_ReportEntity(const Handle(Interface_Check)& acheck, const Handle(Standard_Transient)& concerned);
//! Sets a Content : it brings non interpreted data which belong
//! to the Concerned Entity. It can be empty then loaded later.
//! Remark that for an Unknown Entity, Content is set by Create.
Standard_EXPORT void SetContent (const Handle(Standard_Transient)& content);
//! Returns the stored Check
Standard_EXPORT const Handle(Interface_Check)& Check() const;
//! Returns the stored Check in order to change it
Standard_EXPORT Handle(Interface_Check)& CCheck();
//! Returns the stored Concerned Entity. It equates the Content
//! in the case of an Unknown Entity
Standard_EXPORT Handle(Standard_Transient) Concerned() const;
//! Returns True if a Content is stored (it can equate Concerned)
Standard_EXPORT Standard_Boolean HasContent() const;
//! Returns True if a Content is stored AND differs from Concerned
//! (i.e. redefines content) : used when Concerned could not be
//! loaded
Standard_EXPORT Standard_Boolean HasNewContent() const;
//! Returns the stored Content, or a Null Handle
//! Remark that it must be an "Unknown Entity" suitable for
//! the norm of the containing Model
Standard_EXPORT Handle(Standard_Transient) Content() const;
//! Returns True for an Error Entity, i.e. if the Check
//! brings at least one Fail message
Standard_EXPORT Standard_Boolean IsError() const;
//! Returns True for an Unknown Entity, i,e. if the Check
//! is empty and Concerned equates Content
Standard_EXPORT Standard_Boolean IsUnknown() const;
DEFINE_STANDARD_RTTIEXT(Interface_ReportEntity,Standard_Transient)
protected:
private:
Handle(Interface_Check) thecheck;
Handle(Standard_Transient) theconcerned;
Handle(Standard_Transient) thecontent;
};
#endif // _Interface_ReportEntity_HeaderFile