Changes in src/Formula.hpp [56f73b:266875]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Formula.hpp
r56f73b r266875 19 19 #include <iterator> 20 20 21 #include "Exceptions/ ParseError.hpp"21 #include "Exceptions/FormulaStringParseException.hpp" 22 22 23 23 #include "types.hpp" … … 71 71 72 72 std::string toString() const; 73 void fromString(const std::string&) throw( ParseError);73 void fromString(const std::string&) throw(FormulaStringParseException); 74 74 bool checkOut(std::ostream*) const; 75 75 … … 112 112 113 113 private: 114 void parseFromString(std::string::const_iterator&,std::string::const_iterator&,char) throw( ParseError);115 int parseMaybeNumber(std::string::const_iterator &it,std::string::const_iterator &end) throw( ParseError);114 void parseFromString(std::string::const_iterator&,std::string::const_iterator&,char) throw(FormulaStringParseException); 115 int parseMaybeNumber(std::string::const_iterator &it,std::string::const_iterator &end) throw(FormulaStringParseException); 116 116 // this contains all counts of elements in the formula 117 117 // the size of the actual structure might be used in comparisons
Note:
See TracChangeset
for help on using the changeset viewer.