/* * PcpParser_helper.hpp * * Created on: Oct 27, 2011 * Author: heber */ #ifndef PCPPARSER_HELPER_HPP_ #define PCPPARSER_HELPER_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include class ConfigFileBuffer; class molecule; class periodentafel; int ParseForParameter(const int verbose, ifstream * const file, const char * const name, const int sequential, const int xth, const int yth, const int type, void * value, const int repetition, const int critical); int ParseForParameter(const int verbose, struct ConfigFileBuffer * const FileBuffer, const char * const name, const int sequential, const int xth, const int yth, const int type, void * value, const int repetition, const int critical); void LoadMolecule(molecule * const &mol, struct ConfigFileBuffer * const &FileBuffer, const periodentafel * const periode, const bool FastParsing); #endif /* PCPPARSER_HELPER_HPP_ */