mirror of
https://github.com/Ladebeze66/cpp-partie-2.git
synced 2025-12-16 14:07:54 +01:00
25 lines
1013 B
C++
25 lines
1013 B
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* Data.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: fgras-ca <fgras-ca@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/02/26 15:59:05 by fgras-ca #+# #+# */
|
|
/* Updated: 2024/02/26 16:11:24 by fgras-ca ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef DATA_HPP
|
|
# define DATA_HPP
|
|
|
|
# include <string>
|
|
|
|
typedef struct s_data
|
|
{
|
|
std::string dummy_str;
|
|
} Data;
|
|
|
|
#endif
|
|
|