Itasca C++ Interface
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
ienergymap.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "base/src/baseqt.h"
4 
7 
8 namespace itasca {
9 
11 
15  class IEnergyMap {
16  public:
18  virtual QStringList getKeywords() const =0;
21  virtual double getValue(const QString &key) const =0;
22  };
23 } // namespace itasca
24 // EoF
namespace Itasca
Definition: basememory.cpp:9
virtual double getValue(const QString &key) const =0
virtual QStringList getKeywords() const =0
Return a QStringList of all energy names defined in the EnergyMap, comma separated.
All default base headers if Qt is being used.
Interface to EnergyMap class.
Definition: ienergymap.h:15