H2 Combustion
|
00001 #ifndef zh2_reactionparser 00002 #define zh2_reactionparser 00003 00004 #include <string> 00005 #include <vector> 00006 00007 namespace h2comb { 00008 00009 class Substance; 00010 class Reaction; 00011 class Compound; 00012 00045 class ReactionParser 00046 { 00047 public: 00048 void readFile(std::string, std::vector<Reaction *> *, Compound * = 0); 00049 }; 00050 00051 } 00052 00053 #endif 00054 00055