]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/tray-monitor/common.h
Big backport from Enterprise
[bacula/bacula] / bacula / src / qt-console / tray-monitor / common.h
1 /*
2    Bacula(R) - The Network Backup Solution
3
4    Copyright (C) 2000-2017 Kern Sibbald
5
6    The original author of Bacula is Kern Sibbald, with contributions
7    from many others, a complete list can be found in the file AUTHORS.
8
9    You may use this file and others of this release according to the
10    license defined in the LICENSE file, which includes the Affero General
11    Public License, v3.0 ("AGPLv3") and some additional permissions and
12    terms pursuant to its AGPLv3 Section 7.
13
14    This notice must be preserved when any source code is
15    conveyed and/or propagated.
16
17    Bacula(R) is a registered trademark of Kern Sibbald.
18 */
19
20 #ifndef TRAY_MONITOR_COMMON_H
21 #define TRAY_MONITOR_COMMON_H
22
23 #if defined(HAVE_WIN32)
24 #if !defined(_STAT_H)
25 #define _STAT_H       /* don't pull in MinGW stat.h */
26 #endif
27 #ifndef _STAT_DEFINED 
28 #define _STAT_DEFINED /* don't pull in MinGW stat.h */
29 #endif
30 #endif
31
32 #if defined(HAVE_WIN32)
33 #if defined(HAVE_MINGW)
34 #include "mingwconfig.h"
35 #else
36 #include "winconfig.h"
37 #endif
38 #else
39 #include "config.h"
40 #endif
41 #define __CONFIG_H
42
43
44 #include <QtGui>
45 #include <QtCore>
46
47 #include "bacula.h"
48
49 class DbgLine
50 {
51 public:
52    const char *funct;
53    DbgLine(const char *fun): funct(fun) {
54       Dmsg2(0, "[%p] -> %s\n", bthread_get_thread_id(), funct);
55    }
56    ~DbgLine() {
57       Dmsg2(0, "[%p] <- %s\n", bthread_get_thread_id(), funct);
58    }
59 };
60
61 #ifdef Enter
62 #undef Enter
63 #endif
64 //#define Enter()    DbgLine _enter(__PRETTY_FUNCTION__)
65 #define Enter()
66
67 #endif