]> git.ipfire.org Git - thirdparty/squid.git/blame - src/esi/Except.h
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / esi / Except.h
CommitLineData
43ae1d95 1/*
f70aedc4 2 * Copyright (C) 1996-2021 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
43ae1d95 11#ifndef SQUID_ESIEXCEPT_H
12#define SQUID_ESIEXCEPT_H
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
26#endif /* SQUID_ESIEXCEPT_H */
f53969cc 27