Last change
on this file since 69500 was 67913, checked in by vboxsync, 7 years ago |
Main: Adding LoggingNew.h as a replacement for Logging.h that allows us to #define LOG_GROUP like in the rest of the VBox code. It's just a temporary wrapper that includes <VBox/log.h> and prevents Logging.h from getting loaded. Eventually, both Logging.h and LoggingNew.h should go and most of the code should just define LOG_GROUP and include <VBox/log.h> at the top of the file like everyone else.
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
1.1 KB
|
Line | |
---|
1 | /* $Id: LoggingNew.h 67913 2017-07-11 20:15:52Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VirtualBox COM - logging macros and function definitions, for new code.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2017 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef ____H_LOGGINGNEW
|
---|
19 | #define ____H_LOGGINGNEW
|
---|
20 |
|
---|
21 | #ifdef ____H_LOGGING
|
---|
22 | # error "You must include LoggingNew.h as the first include!"
|
---|
23 | #endif
|
---|
24 | #define ____H_LOGGING /* Prevent Logging.h from being included. */
|
---|
25 |
|
---|
26 | #ifndef LOG_GROUP
|
---|
27 | # error "You must define LOG_GROUP immediately before including LoggingNew.h!"
|
---|
28 | #endif
|
---|
29 |
|
---|
30 | #ifdef LOG_GROUP_MAIN_OVERRIDE
|
---|
31 | # error "Please, don't define LOG_GROUP_MAIN_OVERRIDE anymore!"
|
---|
32 | #endif
|
---|
33 |
|
---|
34 | #include <VBox/log.h>
|
---|
35 |
|
---|
36 | #endif // !____H_LOGGINGNEW
|
---|
37 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|
38 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.