1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-02 17:46:22 +03:00
occt/samples/mfc/occtdemo/Projection/Projection_Presentation.h
bugmster 480bf81e37 0024428: Implementation of LGPL license
Update of OCCT samples source code due to moving to LGPL license
2013-12-17 12:43:15 +04:00

40 lines
969 B
C++
Executable File

// Projection_Presentation.h: interface for the Projection_Presentation class.
// Projection of points on curves and curves on surfaces
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_Projection_PRESENTATION_H__790EED7F_7BA2_11D5_BA4A_0060B0EE18EA__INCLUDED_)
#define AFX_Projection_PRESENTATION_H__790EED7F_7BA2_11D5_BA4A_0060B0EE18EA__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include <OCCDemo_Presentation.h>
class Projection_Presentation : public OCCDemo_Presentation
{
public:
// Construction
Projection_Presentation();
public:
// Iteration on samples
virtual void DoSample();
// one phase of iterations
private:
// Sample functions
void sample1();
void sample2();
void sample3();
void sample4();
private:
// Array of pointers to sample functions
typedef void (Projection_Presentation::*PSampleFuncType)();
static const PSampleFuncType SampleFuncs[];
};
#endif