]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/auth/basic/Scheme.h
Source Format Enforcement (#1234)
[thirdparty/squid.git] / src / auth / basic / Scheme.h
index 251eebee877a0a59185549b69fb710d73af69fa9..841a50040d1e910536b97f711a1795487d128efb 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1996-2016 The Squid Software Foundation and contributors
+ * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
  *
  * Squid software is distributed under GPLv2+ license and includes
  * contributions from numerous individuals and organizations.
@@ -19,19 +19,18 @@ namespace Basic
 {
 
 /// \ingroup AuthAPI
-/// \ingroup AuthSchemeAPI
 class Scheme : public Auth::Scheme
 {
 
 public:
     static Auth::Scheme::Pointer GetInstance();
     Scheme() {};
-    virtual ~Scheme() {}
+    ~Scheme() override {}
 
     /* per scheme */
-    virtual char const *type() const;
-    virtual void shutdownCleanup();
-    virtual Auth::Config *createConfig();
+    char const *type() const override;
+    void shutdownCleanup() override;
+    Auth::SchemeConfig *createConfig() override;
     /* Not implemented */
     Scheme(Scheme const &);
     Scheme &operator=(Scheme const &);