implementation of getEnergy()
[cluster_expansion.git] / InteractionsParser.h
blobad69af40c01bb5f64778394df12b05ca75d32c77
1 #ifndef _INTERACTIONSPARSER_H
2 #define _INTERACTIONSPARSER_H
4 #include "Interactions.h"
5 #include "SimpleIni.h"
7 class InteractionsParser {
8 public:
9 InteractionsParser(const char *ini_filename);
10 Interactions getInteractions();
12 private:
13 Interactions _interactions;
14 CSimpleIni _ini;
16 void parseInteraction(CSimpleIni::TNamesDepend::const_iterator,
17 CSimpleIni::TNamesDepend::const_iterator);
20 #endif