bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
FFUInt16.h
1
2// -*- mode: c++; c-basic-offset:4 -*-
3
4// This file is part of ff_handler a FreeForm API handler for the OPeNDAP
5// DAP2 data server.
6
7// Copyright (c) 2005 OPeNDAP, Inc.
8// Author: James Gallagher <jgallagher@opendap.org>
9//
10// This is free software; you can redistribute it and/or modify it under the
11// terms of the GNU Lesser General Public License as published by the Free
12// Software Foundation; either version 2.1 of the License, or (at your
13// option) any later version.
14//
15// This software is distributed in the hope that it will be useful, but
16// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
17// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
18// License for more details.
19//
20// You should have received a copy of the GNU Lesser General Public
21// License along with this library; if not, write to the Free Software
22// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23//
24// You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
25
26// (c) COPYRIGHT URI/MIT 1999
27// Please read the full copyright statement in the file COPYRIGHT.
28//
29// Authors: James Gallagher
30
31#ifndef _ffuint16_h
32#define _ffuint16_h 1
33
34
35#include <libdap/UInt16.h>
36
37using namespace libdap ;
38
39class FFUInt16: public UInt16 {
40public:
41 FFUInt16(const string &n, const string &d);
42 virtual ~FFUInt16() {}
43
44 virtual BaseType *ptr_duplicate();
45
46 virtual bool read();
47};
48
49// $Log: FFUInt16.h,v $
50// Revision 1.2 2000/10/11 19:37:56 jimg
51// Moved the CVS log entries to the end of files.
52// Changed the definition of the read method to match the dap library.
53// Added exception handling.
54// Added exceptions to the read methods.
55//
56// Revision 1.1 1999/05/19 17:52:42 jimg
57// Added
58//
59
60#endif
61