source: anuga_work/development/anugavis/src/sww_file.hh @ 5488

Last change on this file since 5488 was 5488, checked in by jack, 16 years ago

netcdf_file.* -> sww_file.*

File size: 369 bytes
Line 
1#ifndef SWW_FILE_HH
2#define SWW_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 SWWFile{
12public:
13  SWWFile(const string &file_name);
14  ~SWWFile(void);
15private:
16  int netcdf_id;
17};
18
19#endif
Note: See TracBrowser for help on using the repository browser.