]> git.ipfire.org Git - thirdparty/squid.git/blame - src/StoreMetaURL.h
Boilerplate: update copyright blurbs on src/
[thirdparty/squid.git] / src / StoreMetaURL.h
CommitLineData
528b2c61 1/*
bbc27441 2 * Copyright (C) 1996-2014 The Squid Software Foundation and contributors
528b2c61 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.
528b2c61 7 */
bbc27441 8
528b2c61 9#ifndef SQUID_STOREMETAURL_H
10#define SQUID_STOREMETAURL_H
11
e1f7507e 12/* for inheritance */
528b2c61 13#include "StoreMeta.h"
e1f7507e
AJ
14/* for MEMPROXY_CLASS() macros */
15#include "MemPool.h"
528b2c61 16
62e76326 17class StoreMetaURL : public StoreMeta
18{
528b2c61 19public:
b001e822 20 MEMPROXY_CLASS(StoreMetaURL);
62e76326 21
528b2c61 22 char getType() const {return STORE_META_URL;}
62e76326 23
528b2c61 24 bool checkConsistency(StoreEntry *) const;
528b2c61 25};
26
e1f7507e 27MEMPROXY_CLASS_INLINE(StoreMetaURL);
b001e822 28
528b2c61 29#endif /* SQUID_STOREMETAURL_H */