09d84e61b6
+ Changed Sniffer namespace to BPrivate::Storage::Sniffer git-svn-id: file:///srv/svn/repos/haiku/trunk/current@714 a95241bf-73f2-0310-859d-f6bbb57e9c96
38 lines
854 B
C++
38 lines
854 B
C++
//----------------------------------------------------------------------
|
|
// This software is part of the OpenBeOS distribution and is covered
|
|
// by the OpenBeOS license.
|
|
//---------------------------------------------------------------------
|
|
/*!
|
|
\file sniffer/DisjList.h
|
|
Mime Sniffer Disjunction List declarations
|
|
*/
|
|
#ifndef _SNIFFER_DISJ_LIST_H
|
|
#define _SNIFFER_DISJ_LIST_H
|
|
|
|
class BPositionIO;
|
|
|
|
namespace BPrivate {
|
|
namespace Storage {
|
|
namespace Sniffer {
|
|
|
|
//! Abstract class defining methods acting on a list of ORed patterns
|
|
class DisjList {
|
|
public:
|
|
DisjList();
|
|
virtual ~DisjList();
|
|
virtual bool Sniff(BPositionIO *data) const = 0;
|
|
|
|
void SetCaseInsensitive(bool how);
|
|
bool IsCaseInsensitive();
|
|
protected:
|
|
bool fCaseInsensitive;
|
|
};
|
|
|
|
}; // namespace Sniffer
|
|
}; // namespace Storage
|
|
}; // namespace BPrivate
|
|
|
|
#endif // _SNIFFER_DISJ_LIST_H
|
|
|
|
|