]> git.ipfire.org Git - thirdparty/squid.git/blame - src/StoreMetaSTD.h
Boilerplate: update copyright blurbs on src/
[thirdparty/squid.git] / src / StoreMetaSTD.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_STOREMETASTD_H
10#define SQUID_STOREMETASTD_H
11
12#include "StoreMeta.h"
e1f7507e
AJ
13/* for MEMPROXY_CLASS() macros */
14#include "MemPool.h"
528b2c61 15
62e76326 16class StoreMetaSTD : public StoreMeta
17{
18
528b2c61 19public:
b001e822 20 MEMPROXY_CLASS(StoreMetaSTD);
62e76326 21
528b2c61 22 char getType() const {return STORE_META_STD;}
62e76326 23
528b2c61 24 bool validLength(int) const;
62e76326 25 // bool checkConsistency(StoreEntry *) const;
528b2c61 26};
27
e1f7507e 28MEMPROXY_CLASS_INLINE(StoreMetaSTD);
b001e822 29
528b2c61 30#endif /* SQUID_STOREMETASTD_H */