Format is a C++ library that supports printf style like format 
printing by using the features of C++.

The CFormat class provides the format %0d %f %x ... stuff
and the Format template class parses the format string.

the format template is the user interface.

eg.: 
cout << format( "Hello %s\n%d is my favourite number.", "World", 10 ) << endl;

The usage of it is very simple. For the format strings have a look at the 
Format(3) and printf(3) manpage.
