OPeNDAP Hyrax Back End Server (BES)  Updated for version 3.8.3
HE5Swath.h
Go to the documentation of this file.
1 #ifndef _HE5Swath_H
2 #define _HE5Swath_H
3 #include "HE5Var.h"
4 
5 using namespace std;
6 
7 struct HE5Swath {
8 
9  public:
10  string name;
11  vector<HE5Dim> dim_list;
12  vector<HE5Var> geo_var_list;
13  vector<HE5Var> data_var_list;
14 };
15 
16 #endif
vector< HE5Dim > dim_list
Definition: HE5Swath.h:11
STL namespace.
vector< HE5Var > data_var_list
Definition: HE5Swath.h:13
string name
Definition: HE5Swath.h:10
vector< HE5Var > geo_var_list
Definition: HE5Swath.h:12