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