bes  Updated for version 3.20.6
HDFInt16.h
1 // This file is part of the hdf4 data handler for the OPeNDAP data server.
2 
3 // Copyright (c) 2005 OPeNDAP, Inc.
4 // Author: James Gallagher <jgallagher@opendap.org>
5 //
6 // This is free software; you can redistribute it and/or modify it under the
7 // terms of the GNU Lesser General Public License as published by the Free
8 // Software Foundation; either version 2.1 of the License, or (at your
9 // option) any later version.
10 //
11 // This software is distributed in the hope that it will be useful, but
12 // WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
14 // License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public License
17 // along with this software; if not, write to the Free Software Foundation,
18 // Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 //
20 // You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
21 
23 // (c) COPYRIGHT URI/MIT 1994-1999
24 // Please read the full copyright statement in the file COPYRIGHT_URI.
25 
26 // Author: James Gallagher
27 
28 #ifndef _HDFINT16_H
29 #define _HDFINT16_H
30 
31 #include <string>
32 
33 // DODS includes
34 #include <Int16.h>
35 
36 
37 class HDFInt16:public libdap::Int16 {
38  public:
39  HDFInt16(const std::string &n, const std::string &d);
40  virtual ~ HDFInt16();
41  virtual libdap::BaseType *ptr_duplicate();
42  virtual bool read();
43 };
44 
45 #endif // _HDFINT16_H
46 
HDFInt16
Definition: HDFInt16.h:37