int counter = 12; int getCounterFromCxx() { return counter; } void setCounterFromCxx(int c) { counter = c; } namespace Namespaced { int counter = 12; int getCounterFromCxx() { return counter; } void setCounterFromCxx(int c) { counter = c; } } // namespace Namespaced