diff options
author | Mark Spruiell <mes@zeroc.com> | 2018-01-17 15:31:02 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2018-01-17 15:31:02 -0800 |
commit | f1565f0f13b88c1ab04fb66aff67e9ac443af8ac (patch) | |
tree | 63286d397a95213db55a305cf1a48bcebf70047b /cpp/include/Ice/UserExceptionFactory.h | |
parent | More Travis CI fixes (diff) | |
download | ice-f1565f0f13b88c1ab04fb66aff67e9ac443af8ac.tar.bz2 ice-f1565f0f13b88c1ab04fb66aff67e9ac443af8ac.tar.xz ice-f1565f0f13b88c1ab04fb66aff67e9ac443af8ac.zip |
Adding doc comments to C++
Diffstat (limited to 'cpp/include/Ice/UserExceptionFactory.h')
-rw-r--r-- | cpp/include/Ice/UserExceptionFactory.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cpp/include/Ice/UserExceptionFactory.h b/cpp/include/Ice/UserExceptionFactory.h index 8f8baa4f480..877a86f75df 100644 --- a/cpp/include/Ice/UserExceptionFactory.h +++ b/cpp/include/Ice/UserExceptionFactory.h @@ -19,6 +19,7 @@ namespace Ice { +/** Creates and throws a user exception. */ using UserExceptionFactory = std::function<void(const std::string&)>; } @@ -44,6 +45,10 @@ defaultUserExceptionFactory(const std::string& typeId) namespace Ice { +/** + * Creates and throws a user exception. + * \headerfile Ice/Ice.h + */ class ICE_API UserExceptionFactory : public IceUtil::Shared { public: |