]> git.lyx.org Git - lyx.git/blobdiff - src/debug.h
more changes, read the Changelog
[lyx.git] / src / debug.h
index 17684f6f36876845bbdd84dfae80fc58e59be8bd..8f787f728c4c605f0d274b2c7ccc93d4838cf30b 100644 (file)
@@ -3,6 +3,8 @@
 #ifndef LYXDEBUG_H
 #define LYXDEBUG_H
 
+#include <iosfwd>
+
 #include "LString.h"
 #include "support/lstrings.h"
 
@@ -44,13 +46,20 @@ struct Debug {
                ///
                ROFF       = (1 << 13),  // 8192
                ///
-               ACTION     = (1 << 14)   // 16384
+               ACTION     = (1 << 14),   // 16384
+               ///
+               LYXLEX     = (1 << 15),
+               ///
+               DEPEND     = (1 << 16),
+               ///
+               INSETS     = (1 << 17)
        };
        ///
        static const type ANY = type(INFO | INIT | KEY | TOOLBAR |
                                     PARSER | LYXRC | KBMAP | LATEX |
                                     MATHED | FONT | TCLASS | LYXVC |
-                                    LYXSERVER | ROFF | ACTION);
+                                    LYXSERVER | ROFF | ACTION | LYXLEX |
+                                    DEPEND | INSETS);
        ///
        friend inline void operator|=(Debug::type & d1, Debug::type d2);
        
@@ -62,15 +71,17 @@ struct Debug {
        /** Display the tags and descriptions of the current debug level 
            of ds 
        */
-       static void showLevel(ostream &o, type level);
+       static void showLevel(std::ostream & o, type level);
 
        /** show all the possible tags that can be used for debugging */
-       static void showTags(ostream &o);
+       static void showTags(std::ostream & o);
 
 };
 
+
 ///
-inline void operator|= (Debug::type & d1, Debug::type d2)
+inline
+void operator|= (Debug::type & d1, Debug::type d2)
 {
        d1 = static_cast<Debug::type>(d1 | d2);
 }
@@ -78,8 +89,9 @@ inline void operator|= (Debug::type & d1, Debug::type d2)
 
 #include "support/DebugStream.h"
 
+
 ///
-ostream & operator<<(ostream & o, Debug::type t);
+std::ostream & operator<<(std::ostream & o, Debug::type t);
 
 extern DebugStream lyxerr;