]> git.ipfire.org Git - thirdparty/squid.git/blob - src/auth/basic/Scheme.h
Merged from v5 r14984
[thirdparty/squid.git] / src / auth / basic / Scheme.h
1 /*
2 * Copyright (C) 1996-2016 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 #ifndef SQUID_AUTH_BASIC_SCHEME_H
10 #define SQUID_AUTH_BASIC_SCHEME_H
11
12 #if HAVE_AUTH_MODULE_BASIC
13
14 #include "auth/Scheme.h"
15
16 namespace Auth
17 {
18 namespace Basic
19 {
20
21 /// \ingroup AuthAPI
22 class Scheme : public Auth::Scheme
23 {
24
25 public:
26 static Auth::Scheme::Pointer GetInstance();
27 Scheme() {};
28 virtual ~Scheme() {}
29
30 /* per scheme */
31 virtual char const *type() const;
32 virtual void shutdownCleanup();
33 virtual Auth::SchemeConfig *createConfig();
34 /* Not implemented */
35 Scheme(Scheme const &);
36 Scheme &operator=(Scheme const &);
37
38 private:
39 static Auth::Scheme::Pointer _instance;
40 };
41
42 } // namespace Basic
43 } // namespace Auth
44
45 #endif /* HAVE_AUTH_MODULE_BASIC */
46 #endif /* SQUID_AUTH_BASIC_SCHEME_H */
47