15 lines
154 B
C++
15 lines
154 B
C++
#ifndef A_TEST_HPP
|
|
# define A_TEST_HPP
|
|
|
|
#include <string>
|
|
|
|
struct A_test
|
|
{
|
|
std::string title;
|
|
std::string type;
|
|
virtual void func() = 0;
|
|
};
|
|
|
|
#endif
|
|
|