15 lines
123 B
C++
15 lines
123 B
C++
#ifndef TEST2_H
|
|
#define TEST2_H
|
|
|
|
|
|
class Test2 {
|
|
public:
|
|
Test2();
|
|
~Test2();
|
|
void test();
|
|
};
|
|
|
|
|
|
|
|
#endif //TEST2_H
|