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.cc

    r5488 r5598  
    1717#include <SDL.h>
    1818#include "anugavis.hh"
     19#include "height_quantity.hh"
    1920
    2021using std::string;
     
    2829AnugaVis::~AnugaVis(void){
    2930  if(this->screen != NULL) SDL_Quit();
     31}
     32
     33void AnugaVis::add_HeightQuantity(HeightQuantity &height){
     34  height.set_dynamic(this->sww_file.nc_inq_varndims_by_name(height.get_name()) \
     35                     == 2);
     36  this->heights.push_back(height);
     37}
     38
     39void AnugaVis::run(void){
     40
    3041}
    3142
Note: See TracChangeset for help on using the changeset viewer.