repo.or.cz
/
cluster_expansion.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Tweaked .gitignore
[cluster_expansion.git]
/
LatticeParser.h
blob
b9720fcfcc4f35acb032d93293ac977e025d09c8
1
#ifndef _LATTICEPARSER_H
2
#define _LATTICEPARSER_H
3
4
#include
"Lattice.h"
5
#include
"SimpleIni.h"
6
7
class
LatticeParser
{
8
public
:
9
LatticeParser
(
const char
*
ini_filename
);
10
Lattice
*
getLattice
();
11
12
private
:
13
Lattice
*
_lattice
;
14
CSimpleIni _ini
;
15
};
16
17
#endif
18