]> git.mxchange.org Git - flightgear.git/blobdiff - DEM/dem.hxx
Added zlib support.
[flightgear.git] / DEM / dem.hxx
index ae6ae2f7931349cf3183b5858924d52683295da3..23f55b4aafef1d8f006bb5952b1d301356fcf0d3 100644 (file)
@@ -31,6 +31,7 @@
 #include <stdio.h>
 
 #include <Bucket/bucketutils.h>
+#include <zlib/zlib.h>
 
 
 #define DEM_SIZE 1200
@@ -39,7 +40,7 @@
 
 class fgDEM {
     // file pointer for input
-    FILE *fd;
+    gzFile *fd;
 
     // coordinates (in arc seconds) of south west corner
     double originx, originy;
@@ -124,6 +125,9 @@ public:
 
 
 // $Log$
+// Revision 1.3  1998/04/18 03:53:06  curt
+// Added zlib support.
+//
 // Revision 1.2  1998/04/14 02:43:28  curt
 // Used "new" to auto-allocate large DEM parsing arrays in class constructor.
 //