]> Creatis software - gdcm.git/blob - CMake/gdcmTestCompareTypes.cxx
bad59da167b1bb2bd633d6c8a0f1a63b6ba32a60
[gdcm.git] / CMake / gdcmTestCompareTypes.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmTestCompareTypes.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/05/29 23:06:41 $
7   Version:   $Revision: 1.1 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18
19 #define TYPE_LONG_LONG long long
20
21 typedef GDCM_TEST_COMPARE_TYPE_1 Type1;
22 typedef GDCM_TEST_COMPARE_TYPE_2 Type2;
23
24 void function(Type1**) {}
25
26 int main()
27 {
28   Type2** p = 0;
29   function(p);
30   return 0;
31 }