bes  Updated for version 3.20.8
FONcUShort.h
1 // FONcUShort.h
2 
3 // This file is part of BES Netcdf File Out Module
4 
5 // Copyright (c) 2004,2005 University Corporation for Atmospheric Research
6 // Author: Patrick West <pwest@ucar.edu> and Jose Garcia <jgarcia@ucar.edu>
7 //
8 // This library is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU Lesser General Public
10 // License as published by the Free Software Foundation; either
11 // version 2.1 of the License, or (at your option) any later version.
12 //
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 // Lesser General Public License for more details.
17 //
18 // You should have received a copy of the GNU Lesser General Public
19 // License along with this library; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 //
22 //
23 // Authors:
24 // kyang Kent Yang <myang6@hdfgroup.org>
25 // Note: The code follows FONcShort.h.
26 
27 #ifndef FONcUShort_h_
28 #define FONcUShort_h_ 1
29 
30 #include <BaseType.h>
31 
32 using namespace libdap ;
33 
34 #include "FONcBaseType.h"
35 
42 class FONcUShort : public FONcBaseType
43 {
44 private:
45  BaseType * _bt ;
46 public:
47  FONcUShort( BaseType *b ) ;
48  virtual ~FONcUShort() ;
49 
50  virtual void define( int ncid ) ;
51  virtual void write( int ncid ) ;
52 
53  virtual string name() ;
54  virtual nc_type type() ;
55 
56  virtual void dump( ostream &strm ) const ;
57 } ;
58 
59 #endif // FONcUShort_h_
60 
A DAP BaseType with file out netcdf information included.
Definition: FONcBaseType.h:61
A DAP UInt16 with file out netcdf information included.
Definition: FONcUShort.h:43