mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-26 10:19:45 +03:00
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
75 lines
2.0 KiB
C++
75 lines
2.0 KiB
C++
// Created on: 1994-05-31
|
|
// Created by: Christian CAILLET
|
|
// Copyright (c) 1994-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 _IGESSelect_ModelModifier_HeaderFile
|
|
#define _IGESSelect_ModelModifier_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
#include <IFSelect_Modifier.hxx>
|
|
#include <Standard_Boolean.hxx>
|
|
class IGESData_IGESModel;
|
|
class IGESData_Protocol;
|
|
class IFSelect_ContextModif;
|
|
class Interface_InterfaceModel;
|
|
class Interface_Protocol;
|
|
class Interface_CopyTool;
|
|
|
|
|
|
class IGESSelect_ModelModifier;
|
|
DEFINE_STANDARD_HANDLE(IGESSelect_ModelModifier, IFSelect_Modifier)
|
|
|
|
|
|
class IGESSelect_ModelModifier : public IFSelect_Modifier
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
Standard_EXPORT void Perform (IFSelect_ContextModif& ctx, const Handle(Interface_InterfaceModel)& target, const Handle(Interface_Protocol)& protocol, Interface_CopyTool& TC) const;
|
|
|
|
Standard_EXPORT virtual void PerformProtocol (IFSelect_ContextModif& ctx, const Handle(IGESData_IGESModel)& target, const Handle(IGESData_Protocol)& proto, Interface_CopyTool& TC) const;
|
|
|
|
Standard_EXPORT virtual void Performing (IFSelect_ContextModif& ctx, const Handle(IGESData_IGESModel)& target, Interface_CopyTool& TC) const = 0;
|
|
|
|
|
|
|
|
|
|
DEFINE_STANDARD_RTTI(IGESSelect_ModelModifier,IFSelect_Modifier)
|
|
|
|
protected:
|
|
|
|
|
|
Standard_EXPORT IGESSelect_ModelModifier(const Standard_Boolean maychangegraph);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _IGESSelect_ModelModifier_HeaderFile
|