Added a brief explanation of how you'd use Printable

This commit is contained in:
amcewen 2011-04-02 11:33:27 +01:00
parent 3540d92eb2
commit facbd279b6
1 changed files with 6 additions and 0 deletions

View File

@ -22,6 +22,12 @@
class Print;
/** The Printable class provides a way for new classes to allow themselves to be printed.
By deriving from Printable and implementing the printTo method, it will then be possible
for users to print out instances of this class by passing them into the usual
Print::print and Print::println methods.
*/
class Printable
{
public: