mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-12 09:59:03 +08: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:
74
src/StepSelect/StepSelect_ModelModifier.hxx
Normal file
74
src/StepSelect/StepSelect_ModelModifier.hxx
Normal file
@@ -0,0 +1,74 @@
|
||||
// Created on: 1994-12-22
|
||||
// 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 _StepSelect_ModelModifier_HeaderFile
|
||||
#define _StepSelect_ModelModifier_HeaderFile
|
||||
|
||||
#include <Standard.hxx>
|
||||
#include <Standard_Type.hxx>
|
||||
|
||||
#include <IFSelect_Modifier.hxx>
|
||||
#include <Standard_Boolean.hxx>
|
||||
class StepData_StepModel;
|
||||
class StepData_Protocol;
|
||||
class IFSelect_ContextModif;
|
||||
class Interface_InterfaceModel;
|
||||
class Interface_Protocol;
|
||||
class Interface_CopyTool;
|
||||
|
||||
|
||||
class StepSelect_ModelModifier;
|
||||
DEFINE_STANDARD_HANDLE(StepSelect_ModelModifier, IFSelect_Modifier)
|
||||
|
||||
|
||||
class StepSelect_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(StepData_StepModel)& target, const Handle(StepData_Protocol)& proto, Interface_CopyTool& TC) const;
|
||||
|
||||
Standard_EXPORT virtual void Performing (IFSelect_ContextModif& ctx, const Handle(StepData_StepModel)& target, Interface_CopyTool& TC) const = 0;
|
||||
|
||||
|
||||
|
||||
|
||||
DEFINE_STANDARD_RTTI(StepSelect_ModelModifier,IFSelect_Modifier)
|
||||
|
||||
protected:
|
||||
|
||||
|
||||
Standard_EXPORT StepSelect_ModelModifier(const Standard_Boolean maychangegraph);
|
||||
|
||||
|
||||
|
||||
private:
|
||||
|
||||
|
||||
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#endif // _StepSelect_ModelModifier_HeaderFile
|
||||
Reference in New Issue
Block a user