Windows2003-3790/windows/advcore/gdiplus/test/functest/coutput.cpp

37 lines
773 B
C++
Raw Normal View History

2001-01-01 00:00:00 +01:00
/******************************Module*Header*******************************\
* Module Name: COutput.cpp
*
* This file contains the code to support the functionality test harness
* for GDI+. This includes menu options and calling the appropriate
* functions for execution.
*
* Created: 05-May-2000 - Jeff Vezina [t-jfvez]
*
* Copyright (c) 2000 Microsoft Corporation
*
\**************************************************************************/
#include "COutput.h"
#include "CFuncTest.h"
extern CFuncTest g_FuncTest;
COutput::COutput()
{
strcpy(m_szName,"No name assigned");
m_bRegression=false;
}
COutput::~COutput()
{
}
BOOL COutput::Init()
{
return g_FuncTest.AddOutput(this);
}
void COutput::PostDraw(RECT rTestArea)
{
}