Extra qualification error
From FrugalWiki
With the new gcc version most of C programs throw an error named extra qualification. Let's see how we can solve the error. What is the problem.
class Foo { int Foo::Foo(void); }
There's no need to type the class name before the methods. Code will be more clear.
class Foo { int Foo(void); }