mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
85798535a1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@632 a592a061-630c-0410-9148-cb99ea01b6c8
29 lines
430 B
C++
29 lines
430 B
C++
// -*- C++ -*-
|
|
#ifndef TRACER_H
|
|
#define TRACER_H
|
|
|
|
#include "debug.h"
|
|
#include "LString.h"
|
|
|
|
using std::endl;
|
|
|
|
class DebugTracer {
|
|
public:
|
|
DebugTracer(string const & s) : str(s) {
|
|
lyxerr << string(depth, ' ') << "Trace begin : "
|
|
<< str << endl;
|
|
++depth;
|
|
|
|
}
|
|
~DebugTracer() {
|
|
--depth;
|
|
lyxerr << string(depth, ' ') << "Trace end : "
|
|
<< str << endl;
|
|
}
|
|
private:
|
|
string str;
|
|
static int depth;
|
|
};
|
|
|
|
#endif
|