mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-10 18:51:21 +03:00
89 lines
2.7 KiB
C++
89 lines
2.7 KiB
C++
// Created on: 1993-03-16
|
|
// 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_CopyMap_HeaderFile
|
|
#define _Interface_CopyMap_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
#include <TColStd_Array1OfTransient.hxx>
|
|
#include <Interface_CopyControl.hxx>
|
|
#include <Standard_Boolean.hxx>
|
|
class Interface_InterfaceModel;
|
|
class Interface_InterfaceError;
|
|
class Standard_Transient;
|
|
|
|
|
|
class Interface_CopyMap;
|
|
DEFINE_STANDARD_HANDLE(Interface_CopyMap, Interface_CopyControl)
|
|
|
|
//! Manages a Map for the need of single Transfers, such as Copies
|
|
//! In such transfer, Starting Entities are read from a unique
|
|
//! Starting Model, and each transferred Entity is bound to one
|
|
//! and only one Result, which cannot be changed later.
|
|
class Interface_CopyMap : public Interface_CopyControl
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
//! Creates a CopyMap adapted to work from a Model
|
|
Standard_EXPORT Interface_CopyMap(const Handle(Interface_InterfaceModel)& amodel);
|
|
|
|
//! Clears Transfer List. Gets Ready to begin another Transfer
|
|
Standard_EXPORT void Clear() Standard_OVERRIDE;
|
|
|
|
//! Returns the InterfaceModel used at Creation time
|
|
Standard_EXPORT Handle(Interface_InterfaceModel) Model() const;
|
|
|
|
//! Binds a Starting Entity identified by its Number <num> in the
|
|
//! Starting Model, to a Result of Transfer <res>
|
|
Standard_EXPORT void Bind (const Handle(Standard_Transient)& ent, const Handle(Standard_Transient)& res) Standard_OVERRIDE;
|
|
|
|
//! Search for the result of a Starting Object (i.e. an Entity,
|
|
//! identified by its Number <num> in the Starting Model)
|
|
//! Returns True if a Result is Bound (and fills <res>)
|
|
//! Returns False if no result is Bound (and nullifies <res>)
|
|
Standard_EXPORT Standard_Boolean Search (const Handle(Standard_Transient)& ent, Handle(Standard_Transient)& res) const Standard_OVERRIDE;
|
|
|
|
|
|
|
|
|
|
DEFINE_STANDARD_RTTIEXT(Interface_CopyMap,Interface_CopyControl)
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
Handle(Interface_InterfaceModel) themod;
|
|
TColStd_Array1OfTransient theres;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _Interface_CopyMap_HeaderFile
|