1 /*
2  * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
3  *
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.
7  */
8 
9 /* DEBUG: section 20    Storage Manager */
10 
11 #include "squid.h"
12 
13 #if USE_DELAY_POOLS
14 #include "DelayId.h"
15 
16 #define STUB_API "stub_DelayId.cc"
17 #include "tests/STUB.h"
18 
DelayId()19 DelayId::DelayId(): pool_(0), compositeId(NULL), markedAsNoDelay(false) {}
~DelayId()20 DelayId::~DelayId() {}
21 
22 void DelayId::delayRead(DeferredRead const&) STUB_NOP
23 
24 #endif /* USE_DELAY_POOLS */
25 
26