bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
FFUInt32.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 1997-98
27// Please read the full copyright statement in the file COPYRIGHT.
28//
29// Authors: reza (Reza Nekovei)
30
31// FreeFrom sub-class implementation for FFByte,...FFGrid.
32// The files are patterned after the subcalssing examples
33// Test<type>.c,h files.
34//
35// ReZa 6/18/97
36
37#ifndef _ffuint32_h
38#define _ffuint32_h 1
39
40
41#include <libdap/UInt32.h>
42
43using namespace libdap ;
44
45class FFUInt32: public UInt32 {
46public:
47 FFUInt32(const string &n, const string &d);
48 virtual ~FFUInt32() {}
49
50 virtual BaseType *ptr_duplicate();
51
52 virtual bool read();
53};
54
55// $Log: FFUInt32.h,v $
56// Revision 1.7 2003/02/10 23:01:52 jimg
57// Merged with 3.2.5
58//
59// Revision 1.6.2.1 2002/12/18 23:30:42 pwest
60// gcc3.2 compile corrections, mainly regarding the using statement
61//
62// Revision 1.6 2000/10/11 19:37:56 jimg
63// Moved the CVS log entries to the end of files.
64// Changed the definition of the read method to match the dap library.
65// Added exception handling.
66// Added exceptions to the read methods.
67//
68// Revision 1.5 1999/05/27 17:02:23 jimg
69// Merge with alpha-3-0-0
70//
71// Revision 1.4.2.1 1999/05/20 21:42:30 edavis
72// Fix spelling of COPYRIGHT and remove some #if 0 stuff.
73//
74// Revision 1.4 1999/05/04 02:55:36 jimg
75// Merge with no-gnu
76//
77// Revision 1.3.12.1 1999/05/01 04:40:30 brent
78// converted old String.h to the new std C++ <string> code
79//
80// Revision 1.3 1998/04/21 17:14:04 jimg
81// Fixes for warnings, etc
82//
83// Revision 1.2 1998/04/16 18:11:21 jimg
84// Sequence support added by Reza
85
86#endif
87