bes Updated for version 3.20.10
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
8using namespace std;
9using namespace libdap;
10
11
12HDF5CFGeoCFProj::HDF5CFGeoCFProj(const string & n, const string &d ) : Byte(n, d)
13{
14}
15
16HDF5CFGeoCFProj::~HDF5CFGeoCFProj()
17{
18}
19BaseType *HDF5CFGeoCFProj::ptr_duplicate()
20{
21 return new HDF5CFGeoCFProj(*this);
22}
23
24bool 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