12 lines
147 B
C++
12 lines
147 B
C++
#ifndef MINIMAL_LIB_H_
|
|
#define MINIMAL_LIB_H_
|
|
|
|
namespace minimal_lib {
|
|
|
|
static int value = 5;
|
|
|
|
int getModified(int x);
|
|
|
|
}
|
|
#endif // MINIMAL_LIB_H_
|