14 lines
199 B
C
14 lines
199 B
C
|
#ifndef TEAPOTLIGHTTEST_H
|
||
|
#define TEAPOTLIGHTTEST_H
|
||
|
|
||
|
class TeapotLightTest : public TeapotTest
|
||
|
{
|
||
|
private:
|
||
|
typedef TeapotTest parent;
|
||
|
|
||
|
public:
|
||
|
TeapotLightTest();
|
||
|
};
|
||
|
|
||
|
#endif // TEAPOTLIGHTTEST_H
|