diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-19 17:54:53 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-19 18:03:17 +0100 |
commit | de70ad0b0c65f4ae5dbdb156e1b9aa1d22855b2c (patch) | |
tree | e0d5e17bc230ce381c7206fb0870434252ba8cdf /package/source/manifest | |
parent | f486e4a428be124627d89ce9f9ccf18eca9deb75 (diff) |
New loplugin:dynexcspec: Add @throws documentation, package
Change-Id: I5d30cc2483452ba140cdce341677e872bffce6d1
Diffstat (limited to 'package/source/manifest')
-rw-r--r-- | package/source/manifest/ManifestImport.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/source/manifest/ManifestImport.hxx b/package/source/manifest/ManifestImport.hxx index 9cace18ee251..3b2302a8bc83 100644 --- a/package/source/manifest/ManifestImport.hxx +++ b/package/source/manifest/ManifestImport.hxx @@ -137,10 +137,15 @@ public: virtual void SAL_CALL setDocumentLocator( const css::uno::Reference< css::xml::sax::XLocator >& xLocator ) throw(css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; private: + /// @throws css::uno::RuntimeException void doFileEntry(StringHashMap &rConvertedAttribs) throw(css::uno::RuntimeException); + /// @throws css::uno::RuntimeException void doEncryptionData(StringHashMap &rConvertedAttribs) throw(css::uno::RuntimeException); + /// @throws css::uno::RuntimeException void doAlgorithm(StringHashMap &rConvertedAttribs) throw(css::uno::RuntimeException); + /// @throws css::uno::RuntimeException void doKeyDerivation(StringHashMap &rConvertedAttribs) throw(css::uno::RuntimeException); + /// @throws css::uno::RuntimeException void doStartKeyAlg(StringHashMap &rConvertedAttribs) throw(css::uno::RuntimeException); }; #endif |