diff options
Diffstat (limited to 'Limber/Server/UserRegistry.h')
-rw-r--r-- | Limber/Server/UserRegistry.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Limber/Server/UserRegistry.h b/Limber/Server/UserRegistry.h new file mode 100644 index 0000000..c021fc4 --- /dev/null +++ b/Limber/Server/UserRegistry.h @@ -0,0 +1,21 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#pragma once + +#include <string> + +namespace Swift { + + class JID; + + class UserRegistry { + public: + virtual ~UserRegistry(); + + virtual bool isValidUserPassword(const JID& user, const std::string& password) const = 0; + }; +} |