USGS

Isis 3.0 Object Programmers' Reference

Home

GroupedStatistics.h
Go to the documentation of this file.
1 #ifndef GroupedStatistics_h
2 #define GroupedStatistics_h
3 
24 // Global forward declarations
25 template< class A, class B > class QMap;
26 template< class A > class QVector;
27 class QString;
28 
29 namespace Isis {
30 
31  // Isis forward declarations
32  class Statistics;
33 
55  public:
59 
60  void AddStatistic(const QString &statType, const double &newStat);
61  const Statistics &GetStatistics(const QString &statType) const;
62  const QVector< QString > GetStatisticTypes() const;
63 
65 
66  private:
69  };
70 };
71 
72 #endif
73