mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-14 13:30:48 +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:
98
src/Interface/Interface_HGraph.hxx
Normal file
98
src/Interface/Interface_HGraph.hxx
Normal file
@@ -0,0 +1,98 @@
|
||||
// Created on: 1993-04-22
|
||||
// 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_HGraph_HeaderFile
|
||||
#define _Interface_HGraph_HeaderFile
|
||||
|
||||
#include <Standard.hxx>
|
||||
#include <Standard_Type.hxx>
|
||||
|
||||
#include <Interface_Graph.hxx>
|
||||
#include <MMgt_TShared.hxx>
|
||||
#include <Standard_Boolean.hxx>
|
||||
class Standard_DomainError;
|
||||
class Interface_Graph;
|
||||
class Interface_InterfaceModel;
|
||||
class Interface_GeneralLib;
|
||||
class Interface_Protocol;
|
||||
class Interface_GTool;
|
||||
|
||||
|
||||
class Interface_HGraph;
|
||||
DEFINE_STANDARD_HANDLE(Interface_HGraph, MMgt_TShared)
|
||||
|
||||
//! This class allows to store a redefinable Graph, via a Handle
|
||||
//! (usefull for an Object which can work on several successive
|
||||
//! Models, with the same general conditions)
|
||||
class Interface_HGraph : public MMgt_TShared
|
||||
{
|
||||
|
||||
public:
|
||||
|
||||
|
||||
//! Creates an HGraph directly from a Graph.
|
||||
//! Remark that the starting Graph is duplicated
|
||||
Standard_EXPORT Interface_HGraph(const Interface_Graph& agraph);
|
||||
|
||||
//! Creates an HGraph with a Graph created from <amodel> and <lib>
|
||||
Standard_EXPORT Interface_HGraph(const Handle(Interface_InterfaceModel)& amodel, const Interface_GeneralLib& lib, const Standard_Boolean theModeStats = Standard_True);
|
||||
|
||||
//! Creates an HGraph with a graph itself created from <amodel>
|
||||
//! and <protocol>
|
||||
Standard_EXPORT Interface_HGraph(const Handle(Interface_InterfaceModel)& amodel, const Handle(Interface_Protocol)& protocol, const Standard_Boolean theModeStats = Standard_True);
|
||||
|
||||
//! Creates an HGraph with a graph itself created from <amodel>
|
||||
//! and <protocol>
|
||||
Standard_EXPORT Interface_HGraph(const Handle(Interface_InterfaceModel)& amodel, const Handle(Interface_GTool)& gtool, const Standard_Boolean theModeStats = Standard_True);
|
||||
|
||||
//! Same a above, but works with the GTool in the model
|
||||
Standard_EXPORT Interface_HGraph(const Handle(Interface_InterfaceModel)& amodel, const Standard_Boolean theModeStats = Standard_True);
|
||||
|
||||
//! Returns the Graph contained in <me>, for Read Only Operations
|
||||
//! Remark that it is returns as "const &"
|
||||
//! Getting it in a new variable instead of a reference would be
|
||||
//! a pitty, because all the graph's content would be duplicated
|
||||
Standard_EXPORT const Interface_Graph& Graph() const;
|
||||
|
||||
//! Same as above, but for Read-Write Operations
|
||||
//! Then, The Graph will be modified in the HGraph itself
|
||||
Standard_EXPORT Interface_Graph& CGraph();
|
||||
|
||||
|
||||
|
||||
|
||||
DEFINE_STANDARD_RTTI(Interface_HGraph,MMgt_TShared)
|
||||
|
||||
protected:
|
||||
|
||||
|
||||
|
||||
|
||||
private:
|
||||
|
||||
|
||||
Interface_Graph thegraph;
|
||||
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#endif // _Interface_HGraph_HeaderFile
|
Reference in New Issue
Block a user