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