cpp06/ex01/Data.hpp

9 lines
84 B
C++

#ifndef DATA_HPP
#define DATA_HPP
typedef struct Data
{
int value;
} Data;
#endif