Tweaked .gitignore
[cluster_expansion.git] / LatticeParser.h
blobb9720fcfcc4f35acb032d93293ac977e025d09c8
1 #ifndef _LATTICEPARSER_H
2 #define _LATTICEPARSER_H
4 #include "Lattice.h"
5 #include "SimpleIni.h"
7 class LatticeParser {
8 public:
9 LatticeParser(const char *ini_filename);
10 Lattice* getLattice();
12 private:
13 Lattice* _lattice;
14 CSimpleIni _ini;
17 #endif