]> git.ipfire.org Git - thirdparty/squid.git/blame - src/esi/Var.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / esi / Var.h
CommitLineData
924f73bc 1/*
bbc27441 2 * Copyright (C) 1996-2014 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:
23 // void *operator new (size_t byteCount);
24 // void operator delete (void *address);
26ac0430 25 ESIVar(esiTreeParentPtr aParent) : esiSequence (aParent) {
924f73bc 26 flags.dovars = 1;
27 }
28};
29
30#endif /* SQUID_ESIVAR_H */
f53969cc 31