Changeset 5598 for anuga_work/development/anugavis/src/anugavis.hh
- Timestamp:
- Aug 4, 2008, 9:07:10 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/development/anugavis/src/anugavis.hh
r5488 r5598 4 4 /* The main controller object. */ 5 5 6 #include <list> 6 7 #include <string> 7 8 #include <SDL.h> 9 #include "height_quantity.hh" 8 10 #include "sww_file.hh" 9 11 12 using std::list; 10 13 using std::string; 11 14 … … 14 17 AnugaVis(const string &sww_file, int width, int height); 15 18 ~AnugaVis(void); 19 void add_HeightQuantity(HeightQuantity &height); 20 void run(void); 16 21 private: 17 22 void init_SDL(int width, int height); … … 19 24 SDL_Surface *screen; 20 25 SWWFile sww_file; 26 list<HeightQuantity> heights; 21 27 }; 22 28
Note: See TracChangeset
for help on using the changeset viewer.