Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 1, 2011, 8:42:26 PM (14 years ago)
Author:
landauf
Message:

removed COUT, CCOUT, and DOUT macros. COUT is now defined as a deprecated function.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/output/src/OrxonoxConfig.h.in

    r8418 r8812  
    106106#  else
    107107#    define __FUNCTIONNAME__
     108#  endif
     109#endif
     110
     111// Declare a function deprecated
     112#ifndef __DEPRECATED__
     113#  if defined(ORXONOX_COMPILER_GCC)
     114#    define __DEPRECATED__(function) function __attribute__ ((deprecated))
     115#  elif defined(ORXONOX_COMPILER_MSVC)
     116#    define __DEPRECATED__(function) __declspec(deprecated) function
     117#  else
     118#    define __DEPRECATED__(function) function
    108119#  endif
    109120#endif
Note: See TracChangeset for help on using the changeset viewer.