Uwe Stöhr wrote: > The attached patch does this but does not compile: "Illegal call of > non-static member function." What am I doing wrong here?
you can call methods via class::method() only when they are static. otherwise you need real existing object for that class to call class_variable.method(). generally you need either the variable or to declare that method to be static. pavel