add type in tests

This commit is contained in:
hugogogo
2022-06-15 21:04:31 +02:00
parent bb4ac9963d
commit 32c413f741
5 changed files with 65 additions and 32 deletions

14
headers/A_test.hpp Normal file
View File

@@ -0,0 +1,14 @@
#ifndef A_TEST_HPP
# define A_TEST_HPP
#include <string>
struct A_test
{
std::string title;
std::string type;
virtual void func() = 0;
};
#endif