From 74e8a4a4e07238d7aefab9dc038aeb9339a69515 Mon Sep 17 00:00:00 2001 From: deva Date: Fri, 24 Jul 2009 09:13:28 +0000 Subject: Added exception throwing info. --- server/src/versionstr.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'server/src/versionstr.h') diff --git a/server/src/versionstr.h b/server/src/versionstr.h index ceed42f..f54bf8d 100644 --- a/server/src/versionstr.h +++ b/server/src/versionstr.h @@ -30,6 +30,8 @@ #include +#include "exception.h" + // Workaround - major, minor and patch are defined as macros when using _GNU_SOURCES #ifdef major #undef major @@ -50,9 +52,10 @@ class VersionStr { public: /** * Constructor. + * Throws an exeption if the string does not parse. * @param v A std::string containing a version string on the form a.b or a.b.c */ - VersionStr(std::string v); + VersionStr(std::string v) throw(Exception); /** * Constructor. @@ -72,8 +75,9 @@ public: /** * Assignment from std::string operator. * Same as in the VersionStr(std::string v) constructor. + * Throws an exeption if the string does not parse. */ - void operator=(std::string v); + void operator=(std::string v) throw(Exception); /** * Comparison operator. @@ -98,7 +102,7 @@ public: size_t patch() const; private: - void set(std::string v); + void set(std::string v) throw(Exception); size_t version[3]; }; -- cgit v1.2.3