9 lines
87 B
C++
9 lines
87 B
C++
|
#include "base.h"
|
||
|
|
||
|
FooNS::FooNS() : x(12345) {}
|
||
|
|
||
|
void FooNS::bar() {
|
||
|
x = 54321;
|
||
|
}
|
||
|
|