-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathData.hpp
More file actions
24 lines (20 loc) · 1007 Bytes
/
Data.hpp
File metadata and controls
24 lines (20 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Data.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: zelhajou <zelhajou@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/01/01 18:20:15 by zelhajou #+# #+# */
/* Updated: 2025/01/02 20:30:06 by zelhajou ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef DATA_HPP
#define DATA_HPP
#include <string>
struct Data
{
std::string name;
int value;
};
#endif