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