mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
PRO file is added + a description of how to generate the Visual Studio projects and compile. In addition, the sample folder is renamed to FuncDemo. Adding 64 bit configuration to VC projects
37 lines
772 B
C++
37 lines
772 B
C++
// PrismDriver.h: interface for the Prism function driver.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(_PRISMDRIVER_H_)
|
|
#define _PRISMDRIVER_H_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include "BaseDriver.h"
|
|
|
|
#include <Standard_DefineHandle.hxx>
|
|
#include <TFunction_Logbook.hxx>
|
|
|
|
DEFINE_STANDARD_HANDLE(PrismDriver, BaseDriver)
|
|
|
|
// A Prism function driver.
|
|
class PrismDriver : public BaseDriver
|
|
{
|
|
public:
|
|
|
|
// ID of the function driver
|
|
static const Standard_GUID& GetID();
|
|
|
|
// Constructor
|
|
PrismDriver();
|
|
|
|
// Execution.
|
|
virtual Standard_Integer Execute(Handle(TFunction_Logbook)& log) const;
|
|
|
|
DEFINE_STANDARD_RTTIEXT(PrismDriver, TFunction_Driver)
|
|
};
|
|
|
|
#endif // !defined(_PRISMDRIVER_H_)
|