]> git.ipfire.org Git - thirdparty/squid.git/blame - src/esi/Attempt.h
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / esi / Attempt.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_ESIATTEMPT_H
12#define SQUID_ESIATTEMPT_H
13
f99c2cfe
AR
14#include "esi/Element.h"
15#include "esi/Sequence.h"
43ae1d95 16
26ac0430 17struct esiAttempt : public esiSequence {
3d0ac046
HN
18 esiAttempt(esiTreeParentPtr aParent) : esiSequence (aParent) {}
19};
43ae1d95 20
21#endif /* SQUID_ESIATTEMPT_H */
f53969cc 22