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