10 lines
121 B
C++
10 lines
121 B
C++
#ifndef PROJECT_EXAMPLE_HPP
|
|
#define PROJECT_EXAMPLE_HPP 1
|
|
|
|
#include <iostream>
|
|
|
|
struct Example {
|
|
Example();
|
|
};
|
|
|
|
#endif
|