mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
0024002: Overall code and build procedure refactoring -- automatic
Automatic upgrade of OCCT code by command "occt_upgrade . -nocdl": - WOK-generated header files from inc and sources from drv are moved to src - CDL files removed - All packages are converted to nocdlpack
This commit is contained in:
92
src/IGESData/IGESData_Protocol.hxx
Normal file
92
src/IGESData/IGESData_Protocol.hxx
Normal file
@@ -0,0 +1,92 @@
|
||||
// Created on: 1993-05-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 _IGESData_Protocol_HeaderFile
|
||||
#define _IGESData_Protocol_HeaderFile
|
||||
|
||||
#include <Standard.hxx>
|
||||
#include <Standard_Type.hxx>
|
||||
|
||||
#include <Interface_Protocol.hxx>
|
||||
#include <Standard_Integer.hxx>
|
||||
#include <Standard_Type.hxx>
|
||||
#include <Standard_Boolean.hxx>
|
||||
class Interface_Protocol;
|
||||
class Interface_InterfaceModel;
|
||||
class Standard_Transient;
|
||||
|
||||
|
||||
class IGESData_Protocol;
|
||||
DEFINE_STANDARD_HANDLE(IGESData_Protocol, Interface_Protocol)
|
||||
|
||||
//! Description of basic Protocol for IGES
|
||||
//! This comprises treatement of IGESModel and Recognition of
|
||||
//! Undefined-FreeFormat-Entity
|
||||
class IGESData_Protocol : public Interface_Protocol
|
||||
{
|
||||
|
||||
public:
|
||||
|
||||
|
||||
Standard_EXPORT IGESData_Protocol();
|
||||
|
||||
//! Gives the count of Resource Protocol. Here, none
|
||||
Standard_EXPORT Standard_Integer NbResources() const;
|
||||
|
||||
//! Returns a Resource, given a rank. Here, none
|
||||
Standard_EXPORT Handle(Interface_Protocol) Resource (const Standard_Integer num) const;
|
||||
|
||||
//! Returns a Case Number, specific of each recognized Type
|
||||
//! Here, Undefined and Free Format Entities have the Number 1.
|
||||
Standard_EXPORT Standard_Integer TypeNumber (const Handle(Standard_Type)& atype) const;
|
||||
|
||||
//! Creates an empty Model for IGES Norm
|
||||
Standard_EXPORT Handle(Interface_InterfaceModel) NewModel() const;
|
||||
|
||||
//! Returns True if <model> is a Model of IGES Norm
|
||||
Standard_EXPORT Standard_Boolean IsSuitableModel (const Handle(Interface_InterfaceModel)& model) const;
|
||||
|
||||
//! Creates a new Unknown Entity for IGES (UndefinedEntity)
|
||||
Standard_EXPORT Handle(Standard_Transient) UnknownEntity() const;
|
||||
|
||||
//! Returns True if <ent> is an Unknown Entity for the Norm, i.e.
|
||||
//! Type UndefinedEntity, status Unknown
|
||||
Standard_EXPORT Standard_Boolean IsUnknownEntity (const Handle(Standard_Transient)& ent) const;
|
||||
|
||||
|
||||
|
||||
|
||||
DEFINE_STANDARD_RTTI(IGESData_Protocol,Interface_Protocol)
|
||||
|
||||
protected:
|
||||
|
||||
|
||||
|
||||
|
||||
private:
|
||||
|
||||
|
||||
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#endif // _IGESData_Protocol_HeaderFile
|
Reference in New Issue
Block a user