Assuming:
#ifndef BAZ_BAR_FOO_H
#define BAZ_BAR_FOO_H
namespace baz {
namespace bar {
class Foo {
public:
int x,y;
// Default c-tor
Foo();
// Copy c-tor
Foo(Foo const & that);
// Data c-tor
Foo(int x, int y);
protected:
// Blah
private:
// Blah
};
};
};
#endif // BAZ_BAR_FOO_H