KWStyle - itkIntTypes.h
 
Matrix View
Description

1 /*=========================================================================
2
3   Program:   Insight Segmentation & Registration Toolkit
4   Module:    $RCSfile: itkIntTypes.h.html,v $
5   Language:  C++
6   Date:      $Date: 2006/01/17 19:15:40 $
7   Version:   $Revision: 1.4 $
8
9   Copyright (c) Insight Software Consortium. All rights reserved.
10   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
11
12      This software is distributed WITHOUT ANY WARRANTY; without even 
13      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14      PURPOSE.  See the above copyright notices for more information.
15
16 NMS =========================================================================*/
17 #ifndef __itkIntTypes_h
18 #define __itkIntTypes_h
19
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23
24 IND /** Convenient and more descriptive integer types. */
25 IND typedef char      ITK_INT8;
26 IND typedef int       ITK_INT32;
27
28 #ifndef _WIN32
29 IND typedef long long   ITK_INT64;
30 #endif
31
32 #ifdef _WIN32
33 IND typedef long      ITK_INT64;
34 #endif
35
36 IND typedef unsigned char ITK_UINT8;
37 TDA,IND typedef unsigned short  ITK_UINT16;
38 TDA,IND typedef unsigned    ITK_UINT32;
39
40 #ifndef _WIN32
41 IND typedef unsigned long long  ITK_UINT64;
42 #endif
43
44 #ifdef _WIN32
45 IND typedef unsigned long ITK_UINT64;
46 #endif
47
48 IND typedef int       ITK_INTPTR;
49 TDA,IND typedef unsigned    ITK_UINTPTR;
50
51 #ifdef __cplusplus
52 IND }
53 #endif
54
55 #endif  /* __itkIntTypes_h */
56
57 EOF

Generated by KWStyle 1.0b on Tuesday January,17 at 02:14:17PM
© Kitware Inc.