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