axnportab.h 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*****************************************************************************/
  2. /******************* Siemens Medizinische Technik Erlangen *******************/
  3. /*****************************************************************************/
  4. /* */
  5. /* File name: axnportab.h Version: 1.0 */
  6. /* */
  7. /*****************************************************************************/
  8. /* */
  9. /* Type: class declaration Programming language: C++ */
  10. /* */
  11. /*****************************************************************************/
  12. /* */
  13. /* Author: Ulrich Koestner Date: 29.10.97 */
  14. /* */
  15. /* Changes: */
  16. /* */
  17. /* Date | Name | Method | CC-Gen */
  18. /* ---------+---------------------+------------------------------+---------- */
  19. /* | | | */
  20. /* | | | */
  21. /* */
  22. /*****************************************************************************/
  23. /* */
  24. /* Description: */
  25. /* ============ */
  26. /* Includes the type definitions for the target plattform */
  27. /* Defines must be set for each plattform separately */
  28. /* QNX/Neutrino, Intel => AXN_NEUTRINO */
  29. /* Windows NT/95, Intel => AXN_NT */
  30. /* Windows CE, Intel => AXN_WINCE */
  31. /* */
  32. /*****************************************************************************/
  33. /* */
  34. /* Copyright (c) Siemens AG 1997. All rights reserved */
  35. /* */
  36. /*****************************************************************************/
  37. /* */
  38. /* */
  39. /* */
  40. #ifndef AXNPORTAB_H
  41. #define AXNPORTAB_H
  42. //#if !( defined( AXN_NT ) || defined( AXN_NEUTRINO ) || defined( AXN_WINCE ) )
  43. //#error Defines not set! Please set a define AXN_NT for WinNt or AXN_NEUTRINO for QNX/Neutrino target
  44. //#endif
  45. // // QNX/Neutrino, Intel
  46. //#ifdef AXN_NEUTRINO
  47. //#include "..\\gbl\axnportabnto.h"
  48. //#endif
  49. // // Windows NT/95, Intel
  50. //#ifdef AXN_NT
  51. #include "..\\gbl\axnportabnt.h"
  52. //#endif
  53. // // Windows CE, Intel
  54. //#ifdef AXN_WINCE
  55. //#include "..\\gbl\axnportabce.h"
  56. //#endif
  57. #endif