On Wed, 10 Oct 2018 18:27:53 +0300 Yordan Karadzhov <ykaradzhov@xxxxxxxxxx> wrote: > On 9.10.2018 19:34, Steven Rostedt wrote: > > Is this private to libkshark and not going to be exported? > > > > In other words, do we need to worry about namespace? > > The namespace here is used mostly for making the code easy to read. > C++ people do this because it makes the code look more OO-ish. > > Note that Never mind. My question was because I *missed* seeing: +namespace KsUtils { And was asking if we want to have a namespace. -- Steve > > namespace Foo > { > bool bar1(int x); > > void bar2(); > }; > > is equivalent to > > class Foo { > static bool bar1(int x); > > static void bar2(); > }; > > Thanks! > Yordan