Home
Install
Use
Develop
Support
News
Credits
hosted by
|
11#ifndef __MEAL_FileParse_H
12#define __MEAL_FileParse_H
20 void parse ( const std::string& filename, T* instance)
22 std::ifstream input (filename.c_str());
24 throw Error (FailedSys, "MEAL::parse", "ifstream (" + filename + ")");
28 while (!input.eof()) {
30 std::getline (input, line);
31 line = stringtok (line, "#\n", false);
36 instance->parse (line);
Namespace in which all modeling and calibration related code is declared. Definition ExampleComplex2.h:16
Generated using doxygen 1.14.0
|