]> git.ipfire.org Git - thirdparty/squid.git/blame - src/esi/Except.h
Maintenance: automate header guards 2/3 (#1655)
[thirdparty/squid.git] / src / esi / Except.h
CommitLineData
43ae1d95 1/*
b8ae064d 2 * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
43ae1d95 3 *
bbc27441
AJ
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.
43ae1d95 7 */
8
bbc27441
AJ
9/* DEBUG: section 86 ESI processing */
10
ff9d9458
FC
11#ifndef SQUID_SRC_ESI_EXCEPT_H
12#define SQUID_SRC_ESI_EXCEPT_H
43ae1d95 13
f99c2cfe
AR
14#include "esi/Element.h"
15#include "esi/Sequence.h"
43ae1d95 16
17/* esiExcept */
18
5aeabf95 19class esiExcept : public esiSequence
43ae1d95 20{
5aeabf95 21
22public:
3d0ac046
HN
23 esiExcept(esiTreeParentPtr aParent) : esiSequence (aParent) {}
24};
43ae1d95 25
ff9d9458 26#endif /* SQUID_SRC_ESI_EXCEPT_H */
f53969cc 27