1//----------------------------------------------------------------------
2//  This software is part of the Haiku distribution and is covered
3//  by the MIT License.
4//---------------------------------------------------------------------
5/*!
6	\file DisjList.cpp
7	MIME sniffer Disjunction List class implementation
8*/
9
10#include <sniffer/DisjList.h>
11
12using namespace BPrivate::Storage::Sniffer;
13
14DisjList::DisjList()
15	: fCaseInsensitive(false)
16{
17}
18
19DisjList::~DisjList() {
20}
21
22void
23DisjList::SetCaseInsensitive(bool how) {
24	fCaseInsensitive = how;
25}
26
27bool
28DisjList::IsCaseInsensitive() {
29	return fCaseInsensitive;
30}
31
32
33
34
35