Files
42_INT_11_ft_containers/headers/A_test.hpp
2022-06-15 21:04:31 +02:00

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