diff options
author | Paradox <none@none> | 2009-02-09 08:16:34 -0500 |
---|---|---|
committer | Paradox <none@none> | 2009-02-09 08:16:34 -0500 |
commit | d230302b16474ff22a35243ffed6236ef4fc7fb9 (patch) | |
tree | e3679ad841a47b275756f2721f9aa24a3ee548a6 /dep/include/sockets/Exception.h | |
parent | b0694d7e5e794b361fa178d55fefdb98cf47e9ca (diff) |
Replace tabs with spaces in more files.
--HG--
branch : trunk
Diffstat (limited to 'dep/include/sockets/Exception.h')
-rw-r--r-- | dep/include/sockets/Exception.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/dep/include/sockets/Exception.h b/dep/include/sockets/Exception.h index 81ba7373d0d..8bfa9904d8b 100644 --- a/dep/include/sockets/Exception.h +++ b/dep/include/sockets/Exception.h @@ -1,7 +1,7 @@ /** - ** \file Exception.h - ** \date 2007-09-28 - ** \author grymse@alhem.net + ** \file Exception.h + ** \date 2007-09-28 + ** \author grymse@alhem.net **/ /* Copyright (C) 2007 Anders Hedstrom @@ -34,17 +34,17 @@ namespace SOCKETS_NAMESPACE { class Exception { public: - Exception(const std::string& description); - virtual ~Exception() {} + Exception(const std::string& description); + virtual ~Exception() {} - virtual const std::string ToString() const; + virtual const std::string ToString() const; - Exception(const Exception& ) {} // copy constructor + Exception(const Exception& ) {} // copy constructor - Exception& operator=(const Exception& ) { return *this; } // assignment operator + Exception& operator=(const Exception& ) { return *this; } // assignment operator private: - std::string m_description; + std::string m_description; }; |