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

Started C++-ising the code.

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>
9using std::string;
10
11class NetCDFFile{
12public:
13  NetCDFFile(const string &file_name);
14  ~NetCDFFile(void);
15private:
16  int netcdf_id;
17};
18
19#endif
Note: See TracBrowser for help on using the repository browser.