]> git.ipfire.org Git - thirdparty/squid.git/blame - src/esi/Var.h
Source Format Enforcement (#1234)
[thirdparty/squid.git] / src / esi / Var.h
CommitLineData
924f73bc 1/*
b8ae064d 2 * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
924f73bc 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.
924f73bc 7 */
8
bbc27441
AJ
9/* DEBUG: section 86 ESI processing */
10
924f73bc 11#ifndef SQUID_ESIVAR_H
12#define SQUID_ESIVAR_H
13
f99c2cfe
AR
14#include "esi/Element.h"
15#include "esi/Sequence.h"
924f73bc 16
17/* esiVar */
18
19class ESIVar:public esiSequence
20{
21
22public:
26ac0430 23 ESIVar(esiTreeParentPtr aParent) : esiSequence (aParent) {
924f73bc 24 flags.dovars = 1;
25 }
26};
27
28#endif /* SQUID_ESIVAR_H */
f53969cc 29