10 lines
87 B
C++
10 lines
87 B
C++
#ifndef DATA_HPP
|
|
# define DATA_HPP
|
|
|
|
struct Data {
|
|
public:
|
|
std::string str;
|
|
};
|
|
|
|
#endif
|