diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-03-06 21:37:39 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-03-06 21:37:39 +0000 |
commit | ba25f019012b632f6af9f5addee5058ba6a4e077 (patch) | |
tree | f9e5bc70a9fb075e43f11ca4a02493147e4b3d50 /service/api.ice | |
parent | Add basic site setup (diff) | |
download | mirrorsearch-ba25f019012b632f6af9f5addee5058ba6a4e077.tar.bz2 mirrorsearch-ba25f019012b632f6af9f5addee5058ba6a4e077.tar.xz mirrorsearch-ba25f019012b632f6af9f5addee5058ba6a4e077.zip |
Wrap support for making unique ptrs from functions
Diffstat (limited to 'service/api.ice')
-rw-r--r-- | service/api.ice | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/service/api.ice b/service/api.ice index c207c3d..64edfe7 100644 --- a/service/api.ice +++ b/service/api.ice @@ -10,8 +10,8 @@ module MirrorSearch { interface Search { idempotent SearchServices getServices(); - idempotent SearchHits getMatches(string filename); - idempotent optional(0) string feelingLucky(string filename); + idempotent SearchHits getMatches(string filename) throws XmlError; + idempotent optional(0) string feelingLucky(string filename) throws XmlError; }; }; |