-/* src/config.h. Generated by configure. */
+/* src/config.h. Generated automatically by configure. */
/* src/config.h.in. Generated from configure.in by autoheader. */
/* Define to 1 if you have the <dlfcn.h> header file. */
#define HAVE_DLFCN_H 1
/* Define to 1 if you have the <inttypes.h> header file. */
-#define HAVE_INTTYPES_H 1
+/* #undef HAVE_INTTYPES_H */
/* Define to 1 if you have the <memory.h> header file. */
-#define HAVE_MEMORY_H 1
+/* #undef HAVE_MEMORY_H */
/* Define to 1 if you have the <stdint.h> header file. */
-#define HAVE_STDINT_H 1
+/* #undef HAVE_STDINT_H */
/* Define to 1 if you have the <stdlib.h> header file. */
-#define HAVE_STDLIB_H 1
+/* #undef HAVE_STDLIB_H */
/* Define to 1 if you have the <strings.h> header file. */
-#define HAVE_STRINGS_H 1
+/* #undef HAVE_STRINGS_H */
/* Define to 1 if you have the <string.h> header file. */
-#define HAVE_STRING_H 1
+/* #undef HAVE_STRING_H */
/* Define to 1 if you have the <sys/stat.h> header file. */
-#define HAVE_SYS_STAT_H 1
+/* #undef HAVE_SYS_STAT_H */
/* Define to 1 if you have the <sys/types.h> header file. */
-#define HAVE_SYS_TYPES_H 1
+/* #undef HAVE_SYS_TYPES_H */
/* Define to 1 if you have the <unistd.h> header file. */
-#define HAVE_UNISTD_H 1
+/* #undef HAVE_UNISTD_H */
/* Name of package */
#define PACKAGE "gdcm"
/* Define to the address where bug reports for this package should be sent. */
-#define PACKAGE_BUGREPORT ""
+/* #undef PACKAGE_BUGREPORT */
/* Define to the full name of this package. */
-#define PACKAGE_NAME ""
+/* #undef PACKAGE_NAME */
/* Define to the full name and version of this package. */
-#define PACKAGE_STRING ""
+/* #undef PACKAGE_STRING */
/* Define to the one symbol short name of this package. */
-#define PACKAGE_TARNAME ""
+/* #undef PACKAGE_TARNAME */
/* Define to the version of this package. */
-#define PACKAGE_VERSION ""
+/* #undef PACKAGE_VERSION */
/* The size of a `char', as computed by sizeof. */
#define SIZEOF_CHAR 1
-// $Header: /cvs/public/gdcm/src/Attic/gdcmHeader.cxx,v 1.89 2003/09/24 13:52:46 jpr Exp $
+// $Header: /cvs/public/gdcm/src/Attic/gdcmHeader.cxx,v 1.90 2003/09/24 16:18:32 jpr Exp $
//This is needed when compiling in debug mode
#ifdef _MSC_VER
Initialise();
if ( !OpenFile(exception_on_error))
return;
+printf ("avant ParseHeader\n");
ParseHeader();
+printf ("avant LoadElements\n");
+
LoadElements();
CloseFile();
}
g = ReadInt16();
n = ReadInt16();
- if ( (g==0x7fe0) && (n==0x0010) )
+ //if ( (g==0x7fe0) && (n==0x0010) )
if (errno == 1)
// We reached the EOF (or an error occured) and header parsing
return (gdcmElValue *)0;
}
NewElVal->SetOffset(ftell(fp));
- if ( (g==0x7fe0) && (n==0x0010) )
+ //if ( (g==0x7fe0) && (n==0x0010) )
return NewElVal;
}