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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
#ifndef COIN_DEFS_H
#define COIN_DEFS_H
/**************************************************************************\
*
* This file is part of the Coin 3D visualization library.
* Copyright (C) 1998-2004 by Systems in Motion. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* ("GPL") version 2 as published by the Free Software Foundation.
* See the file LICENSE.GPL at the root directory of this source
* distribution for additional information about the GNU GPL.
*
* For using Coin with software that can not be combined with the GNU
* GPL, and for taking advantage of the additional benefits of our
* support services, please contact Systems in Motion about acquiring
* a Coin Professional Edition License.
*
* See <URL:http://www.coin3d.org/> for more information.
*
* Systems in Motion, Teknobyen, Abels Gate 5, 7030 Trondheim, NORWAY.
* <URL:http://www.sim.no/>.
*
\**************************************************************************/
/*
This file contains definitions which should _only_ be used during
library build. It is not installed for use by the application
programmer.
*/
#ifndef COIN_INTERNAL
#error this is a private header file
#endif /* !COIN_INTERNAL */
#ifdef HAVE_CONFIG_H
#include <config.h> /* for HAVE_* defines */
#endif /* HAVE_CONFIG_H */
#ifdef __FILE__
#define COIN_STUB_FILE __FILE__
#else
#define COIN_STUB_FILE ((const char *)0L)
#endif
#ifdef __LINE__
#define COIN_STUB_LINE __LINE__
#else
#define COIN_STUB_LINE 0
#endif
#if defined(HAVE_VAR___PRETTY_FUNCTION__)
#define COIN_STUB_FUNC __PRETTY_FUNCTION__
#elif defined(HAVE_VAR___FUNCTION__)
#define COIN_STUB_FUNC __FUNCTION__
#elif defined(HAVE_VAR___func__)
#define COIN_STUB_FUNC __func__
#else
#define COIN_STUB_FUNC ((const char *)0L)
#endif
/*
COIN_STUB(): this is the method which prints out stub
information. Used where there is functionality missing.
COIN_OBSOLETED: this is the method which prints out obsoleted
information. Used where there is an obsoleted or unsupported
function. Typically a function that we feel should have been private
in Open Inventor.
*/
#if COIN_DEBUG
#include <Inventor/errors/SoDebugError.h>
#define COIN_STUB() \
do { \
SbString s; \
s.sprintf("%s:%u:%s", \
COIN_STUB_FILE ? COIN_STUB_FILE : "<>", \
COIN_STUB_LINE, \
COIN_STUB_FUNC ? COIN_STUB_FUNC : "<>"); \
SoDebugError::postWarning(s.getString(), \
"STUB: functionality not yet completed"); \
} while (0)
#define COIN_STUB_ONCE() \
do { \
static int first = 1; \
if (first) { \
SbString s; \
s.sprintf("%s:%u:%s", \
COIN_STUB_FILE ? COIN_STUB_FILE : "<>", \
COIN_STUB_LINE, \
COIN_STUB_FUNC ? COIN_STUB_FUNC : "<>"); \
SoDebugError::postWarning(s.getString(), \
"STUB: functionality not yet completed"); \
first = 0; \
} \
} while (0)
#define COIN_OBSOLETED() \
do { \
SbString s; \
s.sprintf("%s:%u:%s", \
COIN_STUB_FILE ? COIN_STUB_FILE : "<>", \
COIN_STUB_LINE, \
COIN_STUB_FUNC ? COIN_STUB_FUNC : "<>"); \
SoDebugError::post(s.getString(), \
"OBSOLETED: functionality not supported (any more)"); \
} while (0)
#else /* !COIN_DEBUG */
#define COIN_STUB() do { } while (0)
#define COIN_OBSOLETED() do { } while (0)
#endif /* !COIN_DEBUG */
/* COIN_CT_ASSERT() - a macro for doing compile-time asserting */
#define COIN_CT_ASSERT(expr) \
do { switch ( 0 ) { case 0: case (expr): break; } } while ( 0 )
#endif /* !COIN_DEFS_H */
|