source: anuga_work/development/anugavis/src/anugavis.hh @ 5487

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

Started C++-ising the code.

File size: 430 bytes
Line 
1#ifndef ANUGAVIS_HH
2#define ANUGAVIS_HH
3
4/* The main controller object. */
5
6#include <string>
7#include <SDL.h>
8#include "netcdf_file.hh"
9
10using std::string;
11
12class AnugaVis{
13public:
14  AnugaVis(const string &sww_file, int width, int height);
15  ~AnugaVis(void);
16private:
17  void init_SDL(int width, int height);
18  void init_OpenGL(int width, int height);
19  SDL_Surface *screen;
20  NetCDFFile netcdf;
21};
22
23#endif
Note: See TracBrowser for help on using the repository browser.