]> git.ipfire.org Git - thirdparty/squid.git/blame - src/StoreMetaSTDLFS.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / StoreMetaSTDLFS.h
CommitLineData
47f6e231 1/*
4ac4a490 2 * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
47f6e231 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.
47f6e231 7 */
bbc27441 8
47f6e231 9#ifndef SQUID_STOREMETASTDLFS_H
10#define SQUID_STOREMETASTDLFS_H
11
b367a435 12#include "StoreMeta.h"
47f6e231 13
14class StoreMetaSTDLFS : public StoreMeta
15{
47f6e231 16 MEMPROXY_CLASS(StoreMetaSTDLFS);
17
741c2986 18public:
47f6e231 19 char getType() const {return STORE_META_STD_LFS;}
20
21 bool validLength(int) const;
22 // bool checkConsistency(StoreEntry *) const;
23};
24
47f6e231 25#endif /* SQUID_STOREMETASTDLFS_H */
f53969cc 26