bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
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#include <memory>
8
9using namespace std;
10using namespace libdap;
11
12
13HDF5CFGeoCFProj::HDF5CFGeoCFProj(const string & n, const string &d ) : Byte(n, d)
14{
15}
16
17BaseType *HDF5CFGeoCFProj::ptr_duplicate()
18{
19 auto HDF5CFGeoCFProj_unique = make_unique<HDF5CFGeoCFProj>(*this);
20 return HDF5CFGeoCFProj_unique.release();
21}
22
23bool HDF5CFGeoCFProj::read()
24{
25 // Just return a dummy value.
26 char buf='p';
27 set_read_p(true);
28 set_value((dods_byte)buf);
29
30 return true;
31
32}
33