source:
anuga_work/development/anugavis/src/netcdf_file.hh
@
5487
Last change on this file since 5487 was 5487, checked in by jack, 15 years ago | |
---|---|
File size: 384 bytes |
Line | |
---|---|
1 | #ifndef NETCDF_FILE_HH |
2 | #define NETCDF_FILE_HH |
3 | |
4 | /* A simple read-only wrapper around the NetCDF C calls, since it's |
5 | difficult to build the C++ binding on Win32 (further, it fails its |
6 | test suite. */ |
7 | |
8 | #include <string> |
9 | using std::string; |
10 | |
11 | class NetCDFFile{ |
12 | public: |
13 | NetCDFFile(const string &file_name); |
14 | ~NetCDFFile(void); |
15 | private: |
16 | int netcdf_id; |
17 | }; |
18 | |
19 | #endif |
Note: See TracBrowser
for help on using the repository browser.