-
Notifications
You must be signed in to change notification settings - Fork 0
/
debug.h
54 lines (37 loc) · 936 Bytes
/
debug.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// -*- C++ -*-
//
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
// Michael A.G. Aivazis
// California Institute of Technology
// (C) 1998-2005 All Rights Reserved
//
// <LicenseText>
//
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
#if !defined(journal_debug_h)
#define journal_debug_h
#include <string>
#if !defined(WITHOUT_JOURNAL_DEBUG)
#include <sstream>
#include "Diagnostic.h"
#include "SeverityDebug.h"
#include "macros.h"
#include "manipulators.h"
// forward declarations
namespace journal {
typedef SeverityDebug debug_t;
}
#else
#include "NullDiagnostic.h"
// manipulators
// forward declarations
namespace journal {
typedef NullDiagnostic debug_t;
}
#endif
#endif
// version
// $Id: debug.h,v 1.1.1.1 2006-11-27 00:09:38 aivazis Exp $
// End of file