-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHDFTypeFactory.h
More file actions
83 lines (67 loc) · 2.57 KB
/
HDFTypeFactory.h
File metadata and controls
83 lines (67 loc) · 2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// -*- mode: c++; c-basic-offset:4 -*-
// This file is part of nc_handler, a data handler for the OPeNDAP data
// server.
// Copyright (c) 2002,2003 OPeNDAP, Inc.
// Author: James Gallagher <jgallagher@opendap.org>
//
// This is free software; you can redistribute it and/or modify it under the
// terms of the GNU Lesser General Public License as published by the Free
// Software Foundation; either version 2.1 of the License, or (at your
// option) any later version.
//
// This software is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
// License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this software; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
// You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
#ifndef nc_type_factory_h
#define nc_type_factory_h
#include <string>
using std::string ;
#include <libdap/BaseTypeFactory.h>
using namespace libdap;
// Class declarations; Make sure to include the corresponding headers in the
// implementation file.
class HDFByte;
class HDFInt16;
class HDFUInt16;
class HDFInt32;
class HDFUInt32;
class HDFFloat32;
class HDFFloat64;
class HDFStr;
class HDFUrl;
class HDFArray;
class HDFStructure;
class HDFSequence;
class HDFGrid;
/** A factory for the netCDF client library types.
@author James Gallagher
@see DDS */
class HDFTypeFactory:public BaseTypeFactory {
private:
string d_filename ;
HDFTypeFactory() {}
public:
explicit HDFTypeFactory( const string &filename ) : d_filename( filename ) {}
virtual ~HDFTypeFactory() {}
virtual Byte *NewByte(const string & n = "") const;
virtual Int16 *NewInt16(const string & n = "") const;
virtual UInt16 *NewUInt16(const string & n = "") const;
virtual Int32 *NewInt32(const string & n = "") const;
virtual UInt32 *NewUInt32(const string & n = "") const;
virtual Float32 *NewFloat32(const string & n = "") const;
virtual Float64 *NewFloat64(const string & n = "") const;
virtual Str *NewStr(const string & n = "") const;
virtual Url *NewUrl(const string & n = "") const;
virtual Array *NewArray(const string & n = "", BaseType * v = 0) const;
virtual Structure *NewStructure(const string & n = "") const;
virtual Sequence *NewSequence(const string & n = "") const;
virtual Grid *NewGrid(const string & n = "") const;
};
#endif