]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/stub_DelayId.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / tests / stub_DelayId.cc
CommitLineData
81beaff8 1/*
bde978a6 2 * Copyright (C) 1996-2015 The Squid Software Foundation and contributors
81beaff8 3 *
4e0938ef
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.
81beaff8 7 */
8
4e0938ef
AJ
9/* DEBUG: section 20 Storage Manager */
10
f7f3304a 11#include "squid.h"
81beaff8 12
9a0a18de 13#if USE_DELAY_POOLS
81beaff8 14#include "DelayId.h"
15
54311b70
FC
16#define STUB_API "stub_DelayId.cc"
17#include "tests/STUB.h"
81beaff8 18
814f9a2e 19DelayId::DelayId(): pool_(0), compositeId(NULL), markedAsNoDelay(false) {}
81beaff8 20DelayId::~DelayId() {}
21
54311b70
FC
22void DelayId::delayRead(DeferredRead const&) STUB_NOP
23
9a0a18de 24#endif /* USE_DELAY_POOLS */
f53969cc 25