[THEMES]
[reactos.git] / rostests / rosautotest / CTestList.cpp
1 /*
2 * PROJECT: ReactOS Automatic Testing Utility
3 * LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation
4 * PURPOSE: Class implementing a generic Test list, needs to be used by a derived class
5 * COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org>
6 */
7
8 #include "precomp.h"
9
10 /**
11 * Constructor serving for CTestList-derived classes.
12 *
13 * @param Test
14 * Pointer to a CTest-derived object, for which this test list shall serve.
15 */
16 CTestList::CTestList(CTest* Test) :
17 m_Test(Test)
18 {
19 }