author | mickeyl <mickeyl> | 2004-04-04 17:02:15 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-04-04 17:02:15 (UTC) |
commit | 100def2936503dedc8138d738d68b69d5de66766 (patch) (unidiff) | |
tree | 5d35c8a0a5b10941cc17bb44df10dd851b81d06c | |
parent | fd9146de7698a796659b68606429da490f817138 (diff) | |
download | opie-100def2936503dedc8138d738d68b69d5de66766.zip opie-100def2936503dedc8138d738d68b69d5de66766.tar.gz opie-100def2936503dedc8138d738d68b69d5de66766.tar.bz2 |
fix #defines, so that you never have to say
Opie::Core::odebug << "bla", but just
odebug << "bla".
(I fear otherwise people wouldn't want to use it ;)
-rw-r--r-- | libopie2/opiecore/odebug.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libopie2/opiecore/odebug.h b/libopie2/opiecore/odebug.h index a5c9ded..b040166 100644 --- a/libopie2/opiecore/odebug.h +++ b/libopie2/opiecore/odebug.h | |||
@@ -40,52 +40,52 @@ class QDateTime; | |||
40 | class QDate; | 40 | class QDate; |
41 | class QTime; | 41 | class QTime; |
42 | class QPoint; | 42 | class QPoint; |
43 | class QSize; | 43 | class QSize; |
44 | class QRect; | 44 | class QRect; |
45 | class QRegion; | 45 | class QRegion; |
46 | class QStringList; | 46 | class QStringList; |
47 | class QColor; | 47 | class QColor; |
48 | class QBrush; | 48 | class QBrush; |
49 | 49 | ||
50 | namespace Opie { | 50 | namespace Opie { |
51 | namespace Core { | 51 | namespace Core { |
52 | 52 | ||
53 | class odbgstream; | 53 | class odbgstream; |
54 | class ondbgstream; | 54 | class ondbgstream; |
55 | 55 | ||
56 | #ifdef __GNUC__ | 56 | #ifdef __GNUC__ |
57 | #define o_funcinfo "[" << __PRETTY_FUNCTION__ << "] " | 57 | #define o_funcinfo "[" << __PRETTY_FUNCTION__ << "] " |
58 | #else | 58 | #else |
59 | #define o_funcinfo "[" << __FILE__ << ":" << __LINE__ << "] " | 59 | #define o_funcinfo "[" << __FILE__ << ":" << __LINE__ << "] " |
60 | #endif | 60 | #endif |
61 | 61 | ||
62 | #define o_lineinfo "[" << __FILE__ << ":" << __LINE__ << "] " | 62 | #define o_lineinfo "[" << __FILE__ << ":" << __LINE__ << "] " |
63 | 63 | ||
64 | #define owarn odWarning() | 64 | #define owarn Opie::Core::odWarning() |
65 | #define oerr odError() | 65 | #define oerr Opie::Core::odError() |
66 | #define odebug odDebug() | 66 | #define odebug Opie::Core::odDebug() |
67 | #define ofatal odFatal() | 67 | #define ofatal Opie::Core::odFatal() |
68 | #define oendl "\n" | 68 | #define oendl "\n" |
69 | 69 | ||
70 | class odbgstreamprivate; | 70 | class odbgstreamprivate; |
71 | /** | 71 | /** |
72 | * odbgstream is a text stream that allows you to print debug messages. | 72 | * odbgstream is a text stream that allows you to print debug messages. |
73 | * Using the overloaded "<<" operator you can send messages. Usually | 73 | * Using the overloaded "<<" operator you can send messages. Usually |
74 | * you do not create the odbgstream yourself, but use @ref odDebug() (odebug) | 74 | * you do not create the odbgstream yourself, but use @ref odDebug() (odebug) |
75 | * @ref odWarning() (owarn), @ref odError() (oerr) or @ref odFatal (ofatal) to obtain one. | 75 | * @ref odWarning() (owarn), @ref odError() (oerr) or @ref odFatal (ofatal) to obtain one. |
76 | * | 76 | * |
77 | * Example: | 77 | * Example: |
78 | * <pre> | 78 | * <pre> |
79 | * int i = 5; | 79 | * int i = 5; |
80 | * odebug << "The value of i is " << i << oendl; | 80 | * odebug << "The value of i is " << i << oendl; |
81 | * </pre> | 81 | * </pre> |
82 | * @see odbgstream | 82 | * @see odbgstream |
83 | */ | 83 | */ |
84 | 84 | ||
85 | /*====================================================================================== | 85 | /*====================================================================================== |
86 | * odbgstream | 86 | * odbgstream |
87 | *======================================================================================*/ | 87 | *======================================================================================*/ |
88 | 88 | ||
89 | class odbgstream | 89 | class odbgstream |
90 | { | 90 | { |
91 | public: | 91 | public: |