1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/src/DNaming/DNaming_CylinderDriver.hxx

88 lines
2.4 KiB
C++

// Created on: 2009-05-04
// Created by: Sergey ZARITCHNY <sergey.zaritchny@opencascade.com>
// Copyright (c) 2009-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 _DNaming_CylinderDriver_HeaderFile
#define _DNaming_CylinderDriver_HeaderFile
#include <Standard.hxx>
#include <Standard_Type.hxx>
#include <TFunction_Driver.hxx>
#include <Standard_Integer.hxx>
class TFunction_Logbook;
class TDF_Label;
class BRepPrimAPI_MakeCylinder;
class DNaming_CylinderDriver;
DEFINE_STANDARD_HANDLE(DNaming_CylinderDriver, TFunction_Driver)
//! Computes Cylinder function
class DNaming_CylinderDriver : public TFunction_Driver
{
public:
//! Constructor
//! validation
//! ==========
Standard_EXPORT DNaming_CylinderDriver();
//! Validates labels of a function in <log>.
//! In regeneration mode this method must be called (by the
//! solver) even if the function is not executed, to build
//! the valid label scope.
//! execution of function
//! ======================
Standard_EXPORT virtual void Validate (Handle(TFunction_Logbook)& theLog) const Standard_OVERRIDE;
//! Analyse in <log> if the loaded function must be executed
//! (i.e.arguments are modified) or not.
//! If the Function label itself is modified, the function must
//! be executed.
Standard_EXPORT virtual Standard_Boolean MustExecute (const Handle(TFunction_Logbook)& theLog) const Standard_OVERRIDE;
//! Execute the function and push in <log> the impacted
//! labels (see method SetImpacted).
Standard_EXPORT virtual Standard_Integer Execute (Handle(TFunction_Logbook)& theLog) const Standard_OVERRIDE;
DEFINE_STANDARD_RTTIEXT(DNaming_CylinderDriver,TFunction_Driver)
protected:
private:
Standard_EXPORT void LoadNamingDS (const TDF_Label& theResultLabel, BRepPrimAPI_MakeCylinder& mkCyl) const;
};
#endif // _DNaming_CylinderDriver_HeaderFile