bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
HDF5CFGeoCFProj.h
1// This file is part of the hdf5 data handler for the OPeNDAP data server.
2
4#ifndef _HDF5CFGeoCFPROJ_H
5#define _HDF5CFGeoCFPROJ_H
6
7// DODS includes
8#include <libdap/Byte.h>
9
10
11class HDF5CFGeoCFProj:public libdap::Byte {
12 public:
13 HDF5CFGeoCFProj(const std::string & varname, const std::string &datasetname);
14 ~ HDF5CFGeoCFProj() override = default;
15 libdap::BaseType *ptr_duplicate() override;
16 bool read() override;
17};
18
19#endif // _HDF5CFGeoCFPROJ_H
20