Files
42_INT_11_ft_containers/headers/A_test.hpp
2022-06-16 18:05:28 +02:00

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