]> git.lyx.org Git - lyx.git/blobdiff - src/client/debug.h
Fixed some lines that were too long. It compiled afterwards.
[lyx.git] / src / client / debug.h
index 87b2cb6a378552057a0ef6d40258a8f9d17951bc..f0c604a78041bae1c7e6f2781b1ed19afd917bb5 100644 (file)
 #define LYXDEBUG_H
 
 #include "support/debugstream.h"
+#include "support/docstring.h"
+
+
+namespace lyx {
 
 /** Ideally this should have been a namespace, but since we try to be
   compilable on older C++ compilators too, we use a class instead.
   This is all the different debug levels that we have.
-*/
*  compilable on older C++ compilators too, we use a struct instead.
*  This is all the different debug levels that we have.
+ */
 class lyx_debug_trait {
 public:
        ///
@@ -61,11 +65,14 @@ void operator|=(lyx_debug_trait::type & d1, lyx_debug_trait::type d2)
 }
 
 
-// std::ostream & operator<<(std::ostream & o, Debug::type t);
-
 typedef basic_debugstream<lyx_debug_trait> LyXErr;
 typedef LyXErr::debug Debug;
 
 extern LyXErr lyxerr;
 
+} // namespace lyx
+
+#define LYXERR(type) if (!lyx::lyxerr.debugging(type)) ; else lyx::lyxerr
+
+
 #endif