diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-03-08 22:40:41 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-03-08 22:41:03 +0000 |
commit | a8699eadd99c7d540512b6a31894b6925d4a2218 (patch) | |
tree | 2453d1679373a59dcc43b52bdff10969d67724f8 /service/ex.cpp | |
parent | Add endpoint for listing services (diff) | |
download | mirrorsearch-a8699eadd99c7d540512b6a31894b6925d4a2218.tar.bz2 mirrorsearch-a8699eadd99c7d540512b6a31894b6925d4a2218.tar.xz mirrorsearch-a8699eadd99c7d540512b6a31894b6925d4a2218.zip |
Enable ice_print on XmlError
Diffstat (limited to 'service/ex.cpp')
-rw-r--r-- | service/ex.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/service/ex.cpp b/service/ex.cpp new file mode 100644 index 0000000..ec32416 --- /dev/null +++ b/service/ex.cpp @@ -0,0 +1,10 @@ +#include "api.h" + +namespace MirrorSearch { + void + XmlError::ice_print(std::ostream&s) const + { + s << msg; + } +} + |