diff options
author | Christian Pointner <equinox@anytun.org> | 2008-02-16 14:34:53 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2008-02-16 14:34:53 +0000 |
commit | c15f428cef737e093cafa78f806c6ffc0ccee60c (patch) | |
tree | 313ad89dbaec390106ba9fd4ca5429ee348f87b0 /authAlgoFactory.h | |
parent | added fancy output to lua (diff) |
minor changes
code cleanups
Diffstat (limited to 'authAlgoFactory.h')
-rw-r--r-- | authAlgoFactory.h | 10 |
1 files changed, 6 insertions, 4 deletions
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 |