18 lines
277 B
C
18 lines
277 B
C
|
#ifndef LARGE_TRIANGLE2_TEST_H
|
||
|
#define LARGE_TRIANGLE2_TEST_H
|
||
|
|
||
|
#include "primtest.h"
|
||
|
|
||
|
class LargeTriangle2 : public PrimativeTest
|
||
|
{
|
||
|
private:
|
||
|
typedef PrimativeTest parent;
|
||
|
|
||
|
public:
|
||
|
LargeTriangle2();
|
||
|
|
||
|
virtual void INITFUNCTION();
|
||
|
};
|
||
|
|
||
|
#endif // LARGE_TRIANGLE2_TEST_H
|