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