USML
ascii_profile.h
1 
5 #ifndef USML_ASCII_PROFILE_H
6 #define USML_ASCII_PROFILE_H
7 
8 #include <usml/ocean/ocean.h>
9 
10 namespace usml {
11 namespace ocean {
12 
15 
20 class USML_DECLSPEC ascii_profile : public data_grid<double,1> {
21 
22  public:
23 
24  //**************************************************
25  // initialization
26 
32  ascii_profile( const char* filename ) ;
33 
34 };
35 
36 } // end of namespace ocean
37 } // end of namespace usml
38 
39 #endif
N-dimensional data set and its associated axes.
Definition: data_grid.h:64
Read a 1-D profile from a text file.
Definition: ascii_profile.h:20