COMMON: New overloads for char and void* for the stream debug interface.

This commit is contained in:
Giulio Camuffo 2011-09-14 22:50:18 +02:00
parent b89fb79216
commit 25b3704c68
2 changed files with 12 additions and 0 deletions

View file

@ -41,9 +41,11 @@ public:
Debug &operator<<(const String &str);
Debug &operator<<(const char *str);
Debug &operator<<(char str);
Debug &operator<<(int number);
Debug &operator<<(float number);
Debug &operator<<(bool value);
Debug &operator<<(void *p);
Debug &operator=(const Debug &other);