diff options
author | megamage <none@none> | 2009-02-12 17:09:15 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-02-12 17:09:15 -0600 |
commit | 6aee5fcbe7473a3cbac12b7e8482a7b98bef8be3 (patch) | |
tree | 91ec91d5c19eba9c2fe0e84b1c9dc7047a3de80e /dep/include/sockets/Exception.h | |
parent | 2d2f433b4de1c35b22aaf07854fc0ee11fcb350d (diff) | |
parent | f385747164c3fb278c92ef46fbd6c3da6590bbf0 (diff) |
*Merge.
--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; }; |