]>
git.ipfire.org Git - thirdparty/squid.git/blob - src/auth/basic/Scheme.h
d36115da7047c90ba653ce78e7a2f52f21448348
2 * Copyright (C) 1996-2025 The Squid Software Foundation and contributors
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.
9 #ifndef SQUID_SRC_AUTH_BASIC_SCHEME_H
10 #define SQUID_SRC_AUTH_BASIC_SCHEME_H
12 #if HAVE_AUTH_MODULE_BASIC
14 #include "auth/Scheme.h"
22 class Scheme
: public Auth::Scheme
26 static Auth::Scheme::Pointer
GetInstance();
31 char const *type() const override
;
32 void shutdownCleanup() override
;
33 Auth::SchemeConfig
*createConfig() override
;
35 Scheme(Scheme
const &);
36 Scheme
&operator=(Scheme
const &);
39 static Auth::Scheme::Pointer _instance
;
45 #endif /* HAVE_AUTH_MODULE_BASIC */
46 #endif /* SQUID_SRC_AUTH_BASIC_SCHEME_H */