bes  Updated for version 3.20.6
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 HDF5CFGeoCFProj::~HDF5CFGeoCFProj()
17 {
18 }
19 BaseType *HDF5CFGeoCFProj::ptr_duplicate()
20 {
21  return new HDF5CFGeoCFProj(*this);
22 }
23 
24 bool HDF5CFGeoCFProj::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 
HDF5CFGeoCFProj
Definition: HDF5CFGeoCFProj.h:11
libdap
Definition: BESDapFunctionResponseCache.h:35