lyx_mirror/src/tracer.h
Lars Gullik Bjønnes 76938908d7 use more explicit on constructors use the pimpl idom to reduce size with about 500k
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@641 a592a061-630c-0410-9148-cb99ea01b6c8
2000-04-08 17:02:02 +00:00

28 lines
432 B
C++

// -*- C++ -*-
#ifndef TRACER_H
#define TRACER_H
#include "debug.h"
#include "LString.h"
class DebugTracer {
public:
explicit
DebugTracer(string const & s) : str(s) {
lyxerr << string(depth, ' ') << "Trace begin : "
<< str << std::endl;
++depth;
}
~DebugTracer() {
--depth;
lyxerr << string(depth, ' ') << "Trace end : "
<< str << std::endl;
}
private:
string str;
static int depth;
};
#endif