| 63 | }; |
| 64 | |
| 65 | class not_enough_room : public exception { |
| 66 | public: |
| 67 | virtual const char* what() const throw() { return "Not enough space"; } |
| 68 | }; |
| 69 | |
| 70 | /// The library API - functions intended to be called by the users |
| 71 |
no outgoing calls
no test coverage detected