mirror of
https://github.com/znc/znc.git
synced 2026-08-06 17:03:14 +02:00
Changed some whitespace
git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@381 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
@@ -67,9 +67,9 @@ private:
|
||||
protected:
|
||||
};
|
||||
|
||||
class MCString : public std::map< CString, CString > {
|
||||
class MCString : public std::map<CString, CString> {
|
||||
public:
|
||||
MCString() : std::map< CString, CString >() {}
|
||||
MCString() : std::map<CString, CString>() {}
|
||||
virtual ~MCString() { clear(); }
|
||||
|
||||
enum
|
||||
@@ -81,15 +81,15 @@ public:
|
||||
MCS_EREADFIL = 4
|
||||
};
|
||||
|
||||
int WriteToDisk( const CString & sPath, mode_t iMode = 0644 );
|
||||
int ReadFromDisk( const CString & sPath, mode_t iMode = 0644 );
|
||||
int WriteToDisk(const CString& sPath, mode_t iMode = 0644);
|
||||
int ReadFromDisk(const CString& sPath, mode_t iMode = 0644);
|
||||
|
||||
virtual bool WriteFilter( CString & sKey, CString & sValue ) { return( true ); }
|
||||
virtual bool ReadFilter( CString & sKey, CString & sValue ) { return( true ); }
|
||||
virtual bool WriteFilter(CString& sKey, CString& sValue) { return true; }
|
||||
virtual bool ReadFilter(CString& sKey, CString& sValue) { return true; }
|
||||
|
||||
//! make them parse safe, right now using hex encoding on anything !isalnum
|
||||
virtual CString & Encode( CString & sValue );
|
||||
virtual CString & Decode( CString & sValue );
|
||||
virtual CString& Encode(CString& sValue);
|
||||
virtual CString& Decode(CString& sValue);
|
||||
};
|
||||
|
||||
#endif // !X_STRING_H
|
||||
|
||||
Reference in New Issue
Block a user