]> git.ipfire.org Git - thirdparty/squid.git/blob - src/acl/AnnotationData.h
Remove unused/broken ACL copying support (#941)
[thirdparty/squid.git] / src / acl / AnnotationData.h
1 /*
2 * Copyright (C) 1996-2021 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_ACLANNOTATIONDATA_H
10 #define SQUID_ACLANNOTATIONDATA_H
11
12 #include "AccessLogEntry.h"
13 #include "acl/Data.h"
14 #include "Notes.h"
15
16 /// \ingroup ACLAPI
17 class ACLAnnotationData : public ACLData<NotePairs::Entry *>
18 {
19 MEMPROXY_CLASS(ACLAnnotationData);
20
21 public:
22 ACLAnnotationData();
23
24 /* ACLData<M> API */
25 virtual bool match(NotePairs::Entry *) { return true; }
26 virtual SBufList dump() const;
27 virtual void parse();
28 virtual bool empty() const { return notes->empty(); }
29
30 /// Stores annotations into pairs.
31 void annotate(NotePairs::Pointer pairs, const CharacterSet *delimiters, const AccessLogEntry::Pointer &al);
32
33 private:
34 Notes::Pointer notes;
35 };
36
37 #endif /* SQUID_ACLANNOTATIONDATA_H */
38