1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /*****************************************************************************/
- /******************* Siemens Medizinische Technik Erlangen *******************/
- /*****************************************************************************/
- /* */
- /* File name: axnportab.h Version: 1.0 */
- /* */
- /*****************************************************************************/
- /* */
- /* Type: class declaration Programming language: C++ */
- /* */
- /*****************************************************************************/
- /* */
- /* Author: Ulrich Koestner Date: 29.10.97 */
- /* */
- /* Changes: */
- /* */
- /* Date | Name | Method | CC-Gen */
- /* ---------+---------------------+------------------------------+---------- */
- /* | | | */
- /* | | | */
- /* */
- /*****************************************************************************/
- /* */
- /* Description: */
- /* ============ */
- /* Includes the type definitions for the target plattform */
- /* Defines must be set for each plattform separately */
- /* QNX/Neutrino, Intel => AXN_NEUTRINO */
- /* Windows NT/95, Intel => AXN_NT */
- /* Windows CE, Intel => AXN_WINCE */
- /* */
- /*****************************************************************************/
- /* */
- /* Copyright (c) Siemens AG 1997. All rights reserved */
- /* */
- /*****************************************************************************/
- /* */
- /* */
- /* */
- #ifndef AXNPORTAB_H
- #define AXNPORTAB_H
- //#if !( defined( AXN_NT ) || defined( AXN_NEUTRINO ) || defined( AXN_WINCE ) )
- //#error Defines not set! Please set a define AXN_NT for WinNt or AXN_NEUTRINO for QNX/Neutrino target
- //#endif
- // // QNX/Neutrino, Intel
- //#ifdef AXN_NEUTRINO
- //#include "..\\gbl\axnportabnto.h"
- //#endif
- // // Windows NT/95, Intel
- //#ifdef AXN_NT
- #include "..\\gbl\axnportabnt.h"
- //#endif
- // // Windows CE, Intel
- //#ifdef AXN_WINCE
- //#include "..\\gbl\axnportabce.h"
- //#endif
- #endif
|