bes  Updated for version 3.20.13
HDFEOS2GeoCFProj.cc
1 // This file is part of the hdf4 data handler for the OPeNDAP data server.
2 
4 
5 #ifdef USE_HDFEOS2_LIB
6 
7 #include "config_hdf.h"
8 
9 #include "HDFEOS2GeoCFProj.h"
10 
11 
12 using namespace libdap;
13 using namespace std;
14 
15 HDFEOS2GeoCFProj::HDFEOS2GeoCFProj(const string & n, const string &d ) : Byte(n, d)
16 {
17 }
18 
19 BaseType *HDFEOS2GeoCFProj::ptr_duplicate()
20 {
21  return new HDFEOS2GeoCFProj(*this);
22 }
23 
24 bool HDFEOS2GeoCFProj::read()
25 {
26  // Just return a dummy value.
27  char buf='p';
28  set_read_p(true);
29  set_value((dods_byte)buf);
30 
31  return true;
32 
33 }
34 
35 #endif