mirror of
https://github.com/znc/znc.git
synced 2026-08-06 08:52:57 +02:00
Fix some Doxygen comments
We don't have much comments and even fewer doxygen comments, but those that we have should at least be correct. git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1105 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
@@ -222,9 +222,9 @@ protected:
|
||||
class CBlowfish {
|
||||
public:
|
||||
/**
|
||||
* @sPassword key to encrypt with
|
||||
* @iEncrypt encrypt method (BF_DECRYPT or BF_ENCRYPT)
|
||||
* @sIvec what to set the ivector to start with, default sets it all 0's
|
||||
* @param sPassword key to encrypt with
|
||||
* @param iEncrypt encrypt method (BF_DECRYPT or BF_ENCRYPT)
|
||||
* @param sIvec what to set the ivector to start with, default sets it all 0's
|
||||
*/
|
||||
CBlowfish(const CString & sPassword, int iEncrypt, const CString & sIvec = "");
|
||||
~CBlowfish();
|
||||
@@ -503,7 +503,7 @@ public:
|
||||
|
||||
/**
|
||||
* @brief Attach() to a raw pointer
|
||||
* @param pRawPtr The raw pointer to keep track of, ***WARNING*** Do _NOT_ allow more than one CSmartPtr keep track of the same raw pointer
|
||||
* @param p The raw pointer to keep track of, ***WARNING*** Do _NOT_ allow more than one CSmartPtr keep track of the same raw pointer
|
||||
* @return Reference to self
|
||||
*/
|
||||
CSmartPtr<T>& operator =(T* p) { Attach(p); return *this; }
|
||||
|
||||
Reference in New Issue
Block a user