/**************************************************************************
*	Filename	: Nmg.cpp
*
*	Author		:			
*	Description	:
*	Revision	:
**************************************************************************/

#include "stdVfx.h"
#include "Nmg.h"

#include "resource.h"

DWord PilotMain( Word cmd, Ptr cmdPBP, Word launchFlags)
{
	if (cmd == sysAppLaunchCmdNormalLaunch )
	{
		CNmgApp theApp;
		theApp.StartApplication( cmd, cmdPBP, launchFlags);
		return 0;
	}
	
	return 0;
}

CNmgApp::CNmgApp()
{
}


CNmgApp::~CNmgApp()
{
}

bool CNmgApp::InitInstance(UINT nCmd, void* pCmdPBP, UINT nLaunchFlags)
{

	return GotoView(ID_MAINFORM);
}

BEGIN_GOTOVIEW_MAP(CNmgApp)
	//{{VFX_VIEW_MAP(CNmgApp) 
	MAP_MEMBER(ID_MAINFORM, m_MainDlg)
	//}}VFX_VIEW_MAP 
END_GOTOVIEW_MAP()
