mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
27 lines
587 B
C++
Executable File
27 lines
587 B
C++
Executable File
// OCC_3dApp.cpp: implementation of the OCC_3dApp class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#include "stdafx.h"
|
|
#include "OCC_3dApp.h"
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Construction/Destruction
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
OCC_3dApp::OCC_3dApp()
|
|
{
|
|
try
|
|
{myGraphicDevice = new Graphic3d_WNTGraphicDevice();}
|
|
catch(Standard_Failure)
|
|
{
|
|
AfxMessageBox("Fatal error during graphic initialization",MB_ICONSTOP);
|
|
ExitProcess(1);
|
|
}
|
|
}
|
|
|
|
OCC_3dApp::~OCC_3dApp()
|
|
{
|
|
|
|
}
|