1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/samples/mfc/standard/Common/OCC_2dApp.cpp
2012-03-05 19:23:40 +04:00

24 lines
553 B
C++
Executable File

// OCC_2dApp.cpp: implementation of the OCC_2dApp class.
//
//////////////////////////////////////////////////////////////////////
#include <stdafx.h>
#include "OCC_2dApp.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
OCC_2dApp::OCC_2dApp()
{
try
{myGraphicDevice = new WNT_GraphicDevice();}
catch(Standard_Failure)
{
AfxMessageBox("Fatal error during graphic initialization",MB_ICONSTOP);
ExitProcess(1);
}
}