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