bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
HDFEOS2GeoCFProj.cc
1// This file is part of the hdf4 data handler for the OPeNDAP data server.
2
4
5#ifdef USE_HDFEOS2_LIB
6
7#include "config_hdf.h"
8
9#include "HDFEOS2GeoCFProj.h"
10
11
12using namespace libdap;
13using namespace std;
14
15HDFEOS2GeoCFProj::HDFEOS2GeoCFProj(const string & n, const string &d ) : Byte(n, d)
16{
17}
18
19BaseType *HDFEOS2GeoCFProj::ptr_duplicate()
20{
21 return new HDFEOS2GeoCFProj(*this);
22}
23
24bool HDFEOS2GeoCFProj::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
35#endif