diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-03-18 03:12:05 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-03-18 03:12:33 +1100 |
commit | e7b30d24fd22d2ada74adcb4c058ee8b14a1d189 (patch) | |
tree | 6173d208ce23edfa7a32d1e02da12a08f0cb7577 /include/osl | |
parent | 5e3cca7b0ae81e2467fb306c1c707f6f5ba7d284 (diff) |
osl: I think we all know what a constructor and destructor is...
Change-Id: I67c17606b2f9d93ec047aafa1bf6adffdbad4b40
Diffstat (limited to 'include/osl')
-rw-r--r-- | include/osl/security_decl.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/osl/security_decl.hxx b/include/osl/security_decl.hxx index e03474e5a8a2..b011009f8c50 100644 --- a/include/osl/security_decl.hxx +++ b/include/osl/security_decl.hxx @@ -37,10 +37,9 @@ protected: oslSecurity m_handle; public: - /// constructor inline Security(); - /// destructor inline ~Security(); + /** get the security information for one user. The underlying operating system is asked for this information. @param[in] strName denotes the name of the user @@ -50,6 +49,7 @@ public: */ inline bool SAL_CALL logonUser(const rtl::OUString& strName, const rtl::OUString& strPasswd); + /** get the security information for one user. @verbatim @@ -58,6 +58,7 @@ public: could be connected by this user, the methos will return true and getHomeDir will return \\server\username. @endverbatim + @param[in] strName denotes the name of the user @param[in] strPasswd denotes the password of this user @param[in] strFileServer denotes the file server to login to |