]> git.lyx.org Git - features.git/blobdiff - src/tracer.h
make doc++ able to generate the source documentation for lyx
[features.git] / src / tracer.h
index a467efb56896ca22d8831d741dc1f94f0128bb55..1e2ced161e492305a1655de3ce3c8de5436192b5 100644 (file)
 #include "debug.h"
 #include "LString.h"
 
+///
 class DebugTracer {
 public:
+       ///
        explicit
        DebugTracer(string const & s) : str(s) {
                lyxerr << string(depth, ' ') << "Trace begin : "
@@ -28,13 +30,16 @@ public:
                ++depth;
                
        }
+       ///
        ~DebugTracer() {
                --depth;
                lyxerr << string(depth, ' ') << "Trace end : "
                       << str << std::endl;
        }
 private:
+       ///
        string str;
+       ///
        static int depth;
 };