/* * Copyright (C) 1996-2018 The Squid Software Foundation and contributors * * Squid software is distributed under GPLv2+ license and includes * contributions from numerous individuals and organizations. * Please see the COPYING and CONTRIBUTORS files for details. */ /* DEBUG: section 86 ESI processing */ #ifndef SQUID_ESIATTEMPT_H #define SQUID_ESIATTEMPT_H #include "esi/Element.h" #include "esi/Sequence.h" /* esiAttempt */ struct esiAttempt : public esiSequence { // void *operator new (size_t byteCount); // void operator delete (void *address); esiAttempt(esiTreeParentPtr aParent) : esiSequence (aParent) {} }; #endif /* SQUID_ESIATTEMPT_H */