]> git.ipfire.org Git - thirdparty/squid.git/blame - src/StoreMetaVary.h
Source Format Enforcement (#532)
[thirdparty/squid.git] / src / StoreMetaVary.h
CommitLineData
528b2c61 1/*
77b1029d 2 * Copyright (C) 1996-2020 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_STOREMETAVARY_H
10#define SQUID_STOREMETAVARY_H
11
b367a435 12#include "StoreMeta.h"
528b2c61 13
62e76326 14class StoreMetaVary : public StoreMeta
15{
b001e822 16 MEMPROXY_CLASS(StoreMetaVary);
62e76326 17
741c2986 18public:
528b2c61 19 char getType() const {return STORE_META_VARY_HEADERS;}
62e76326 20
528b2c61 21 bool checkConsistency(StoreEntry *) const;
528b2c61 22};
23
24#endif /* SQUID_STOREMETAVARY_H */
f53969cc 25