13 lines
136 B
C++
13 lines
136 B
C++
#ifndef FOO_HPP
|
|
#define FOO_HPP
|
|
|
|
namespace foo {
|
|
|
|
int random_number();
|
|
|
|
void just_a_print();
|
|
|
|
} // end namespace foo
|
|
|
|
#endif // FOO_HPP
|