| 42 | // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // |
| 43 | |
| 44 | static label parseInt(const string& str) |
| 45 | { |
| 46 | IStringStream intStream(str); |
| 47 | |
| 48 | label a; |
| 49 | |
| 50 | intStream >> a; |
| 51 | |
| 52 | return a; |
| 53 | } |
| 54 | |
| 55 | |
| 56 | static bool readCmd(IFstream& ACfile, string& cmd, string& args) |