]> git.ipfire.org Git - thirdparty/squid.git/blame - src/StoreMetaObjSize.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / StoreMetaObjSize.h
CommitLineData
9e6e1d99 1/*
2cd0bda2 2 * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
9e6e1d99 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.
9e6e1d99 7 */
bbc27441 8
9e6e1d99 9#ifndef SQUID_STOREMETAOBJSIZE_H
10#define SQUID_STOREMETAOBJSIZE_H
11
602d9612 12#include "StoreMeta.h"
9e6e1d99 13
14class StoreMetaObjSize : public StoreMeta
15{
9e6e1d99 16 MEMPROXY_CLASS(StoreMetaObjSize);
17
741c2986 18public:
9e6e1d99 19 char getType() const {return STORE_META_OBJSIZE;}
20};
21
9e6e1d99 22#endif /* SQUID_STOREMETAOBJSIZE_H */
f53969cc 23