From c15f428cef737e093cafa78f806c6ffc0ccee60c Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Sat, 16 Feb 2008 14:34:53 +0000 Subject: minor changes code cleanups --- authAlgoFactory.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'authAlgoFactory.h') diff --git a/authAlgoFactory.h b/authAlgoFactory.h index 5949ca3..716e800 100644 --- a/authAlgoFactory.h +++ b/authAlgoFactory.h @@ -39,11 +39,13 @@ class AuthAlgoFactory { public: - AuthAlgoFactory() {}; - ~AuthAlgoFactory() {}; - - AuthAlgo* create(std::string const& type); + static AuthAlgo* create(std::string const& type); +private: + AuthAlgoFactory(); + AuthAlgoFactory(const AuthAlgoFactory& src); + void operator=(const AuthAlgoFactory& src); + ~AuthAlgoFactory(); }; #endif -- cgit v1.2.3