Files
42_INT_09_piscine_cpp/d06/ex01/headers/Data.hpp
2022-03-06 20:24:43 +01:00

10 lines
87 B
C++

#ifndef DATA_HPP
# define DATA_HPP
struct Data {
public:
std::string str;
};
#endif