diff options
Diffstat (limited to 'dep/ACE_wrappers/ace/config-doxygen.h')
-rw-r--r-- | dep/ACE_wrappers/ace/config-doxygen.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/dep/ACE_wrappers/ace/config-doxygen.h b/dep/ACE_wrappers/ace/config-doxygen.h index dd0c14c506f..d4e8a068e43 100644 --- a/dep/ACE_wrappers/ace/config-doxygen.h +++ b/dep/ACE_wrappers/ace/config-doxygen.h @@ -1,4 +1,5 @@ // -*- C++ -*- + /** * This is a configuration file to define all the macros that Doxygen * needs @@ -13,10 +14,13 @@ */ #ifndef ACE_CONFIG_DOXYGEN_H #define ACE_CONFIG_DOXYGEN_H + /// Make sure that we always turn inlining on. #define __ACE_INLINE__ + /// Make the wchar_t interfaces available. #define ACE_HAS_WCHAR + /// Make all the emulation versions of string operations visible // #define ACE_LACKS_WCSTOK #define ACE_LACKS_ITOW @@ -37,27 +41,37 @@ #define ACE_LACKS_WCSCSPN #define ACE_LACKS_WCSSPN #define ACE_LACKS_WCSSTR + /// Support for threads enables several important classes #define ACE_HAS_THREADS + /// Support for Win32 enables the WFMO_Reactor and several Async I/O /// classes #define ACE_WIN32 + /// Enable support for POSIX Asynchronous I/O calls #define ACE_HAS_AIO_CALLS + /// Enable support for TLI interfaces #define ACE_HAS_TLI + /// Enable support for the SSL wrappers #define ACE_HAS_SSL 1 + /// Enable exceptions #define ACE_HAS_EXCEPTIONS + /// Enable timeprobes #define ACE_COMPILE_TIMEPROBES + /// Enable unicode to generate ACE_Registry_Name_Space #define UNICODE + /// These defines make sure that Svc_Conf_y.cpp and Svc_Conf_l.cpp are correctly /// parsed #define __cplusplus #define ACE_YY_USE_PROTOS + /// TAO features that should be documented too #define TAO_HAS_RT_CORBA 1 #define TAO_HAS_MINIMUM_CORBA 0 @@ -66,29 +80,42 @@ #define TAO_HAS_SCIOP 1 #define TAO_HAS_COIOP 1 #define TAO_HAS_TRANSPORT_CURRENT 1 + /// Generate token library documentation #define ACE_HAS_TOKENS_LIBRARY + /// Generate ACE ATM classes documentation #define ACE_HAS_ATM + /// Generate ACE XTI ATM class documentation #define ACE_HAS_XTI_ATM + /// Generate ACE_Dev_Poll_Reactor documentation #define ACE_HAS_DEV_POLL + /// Generate ACE_Event_Handler_T documentation #define ACE_HAS_TEMPLATE_TYPEDEFS + /// Generate ACE_Log_Msg_NT_Event_Log documentation #define ACE_HAS_LOG_MSG_NT_EVENT_LOG + /// Generate icmp documentation #define ACE_HAS_ICMP_SUPPORT 1 + /// Don't expand ACE_RCSID macro #define ACE_USE_RCSID 0 + /// Parse some ACE_SSL classes that depend on recent versions of /// OpenSSL. #define OPENSSL_VERSION_NUMBER 0x00905820L + /// Enable IPv6 #define ACE_HAS_IPV6 + /// Enable netlink socket support #define ACE_HAS_NETLINK + #define ACE_HAS_IP_MULTICAST + #endif /* ACE_CONFIG_DOXYGEN_H */ |