21 lines
514 B
C++
21 lines
514 B
C++
// TestManager.h: interface for the CTestManager class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_TESTMANAGER_H__CE2BEFDF_4C99_4D77_AA4C_5349F0E28090__INCLUDED_)
|
|
#define AFX_TESTMANAGER_H__CE2BEFDF_4C99_4D77_AA4C_5349F0E28090__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
class CTestManager
|
|
{
|
|
public:
|
|
CTestManager();
|
|
virtual ~CTestManager();
|
|
|
|
};
|
|
|
|
#endif // !defined(AFX_TESTMANAGER_H__CE2BEFDF_4C99_4D77_AA4C_5349F0E28090__INCLUDED_)
|