#ifndef A_TEST_HPP # define A_TEST_HPP #include struct A_test { virtual ~A_test(){}; std::string title; std::string type; virtual void func() = 0; }; #endif