Sophie

Sophie

distrib > Mandriva > 10.0-com > i586 > by-pkgid > 21280410b6ea906d791d7a12afae2579 > files > 549

libace5-doc-5.4-2mdk.i586.rpm

// Temperature_Grapher.h,v 1.1 2004/01/01 21:01:00 shuston Exp

#ifndef TEMPERATURE_GRAPHER_H
#define TEMPERATURE_GRAPHER_H

#include "Thermometer.h"
#include "Temperature_Grapher_Options.h"
#include "Naming_Context.h"

class Temperature_Grapher
  {
  public:
    Temperature_Grapher( Temperature_Grapher_Options & opt,
                         Naming_Context & naming_context )
        : opt_(opt), naming_context_(naming_context)
    {
    }

    void monitor();

  protected:
    void update_graph();

  private:
    Thermometer * thermometer_;
    Temperature_Grapher_Options & opt_;
    Naming_Context & naming_context_;
  };

#endif /* TEMPERATURE_GRAPHER_H */