mirror of
https://github.com/paboyle/Grid.git
synced 2025-06-16 14:57:05 +01:00
All functionalities ready.
Todo: add all the fermion action modules
This commit is contained in:
@ -70,10 +70,13 @@ XmlReader::XmlReader(const string &fileName)
|
||||
node_ = doc_.child("grid");
|
||||
}
|
||||
|
||||
void XmlReader::push(const string &s)
|
||||
bool XmlReader::push(const string &s)
|
||||
{
|
||||
node_ = node_.child(s.c_str());
|
||||
// add error check
|
||||
if (node_ == NULL)
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void XmlReader::pop(void)
|
||||
|
Reference in New Issue
Block a user