DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
Don't use the{{using namespace ...}} or using ... constructs in a header file. It might save you some typing but it also forces the namespaces you use onto every `.cpp` cpp file that directly or indirectly includes your headers. That could create name clashes with names in some other namespace that the author of the .cpp file wants to use. Use fully qualified names, painful as it might be.
...