]> git.ipfire.org Git - thirdparty/squid.git/blame - src/StoreMetaSTD.h
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / StoreMetaSTD.h
CommitLineData
528b2c61 1/*
5b74111a 2 * Copyright (C) 1996-2018 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_STOREMETASTD_H
10#define SQUID_STOREMETASTD_H
11
b367a435 12#include "StoreMeta.h"
528b2c61 13
62e76326 14class StoreMetaSTD : public StoreMeta
15{
b001e822 16 MEMPROXY_CLASS(StoreMetaSTD);
62e76326 17
741c2986 18public:
528b2c61 19 char getType() const {return STORE_META_STD;}
62e76326 20
528b2c61 21 bool validLength(int) const;
62e76326 22 // bool checkConsistency(StoreEntry *) const;
528b2c61 23};
24
25#endif /* SQUID_STOREMETASTD_H */
f53969cc 26