Ignore:
Timestamp:
Aug 4, 2008, 9:07:10 AM (16 years ago)
Author:
jack
Message:

Progress on height quantities.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • anuga_work/development/anugavis/src/anugavis.hh

    r5488 r5598  
    44/* The main controller object. */
    55
     6#include <list>
    67#include <string>
    78#include <SDL.h>
     9#include "height_quantity.hh"
    810#include "sww_file.hh"
    911
     12using std::list;
    1013using std::string;
    1114
     
    1417  AnugaVis(const string &sww_file, int width, int height);
    1518  ~AnugaVis(void);
     19  void add_HeightQuantity(HeightQuantity &height);
     20  void run(void);
    1621private:
    1722  void init_SDL(int width, int height);
     
    1924  SDL_Surface *screen;
    2025  SWWFile sww_file;
     26  list<HeightQuantity> heights;
    2127};
    2228
Note: See TracChangeset for help on using the changeset viewer.