Changeset 5600 for anuga_work/development/anugavis/src/height_quantity.hh
- Timestamp:
- Aug 4, 2008, 10:21:33 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_work/development/anugavis/src/height_quantity.hh
r5598 r5600 9 9 10 10 #include <string> 11 11 #include <boost/shared_array.hpp> 12 #include <boost/shared_ptr.hpp> 12 13 #ifdef HAVE_GL_GL_H 13 14 # include <GL/gl.h> … … 15 16 # include <OpenGL/gl.h> 16 17 #endif 18 #include "sww_file.hh" 17 19 20 using boost::shared_array; 21 using boost::shared_ptr; 18 22 using std::string; 19 23 … … 31 35 ~HeightQuantity(void); 32 36 void draw(int frame); 33 const string &get_name(void); 34 void set_dynamic(bool dynamic); 37 void set_SWWFile(const shared_ptr<SWWFile> &file); 35 38 GLdouble offset; 36 39 GLdouble scale; … … 45 48 bool dynamic; 46 49 GLuint display_list; 50 shared_array<float> points; 51 shared_ptr<SWWFile> sww_file; 47 52 }; 48 53
Note: See TracChangeset
for help on using the changeset viewer.