xref: /haiku/src/kits/storage/sniffer/DisjList.cpp (revision 4c8e85b316c35a9161f5a1c50ad70bc91c83a76f)
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 
12 using namespace BPrivate::Storage::Sniffer;
13 
14 DisjList::DisjList()
15 	: fCaseInsensitive(false)
16 {
17 }
18 
19 DisjList::~DisjList() {
20 }
21 
22 void
23 DisjList::SetCaseInsensitive(bool how) {
24 	fCaseInsensitive = how;
25 }
26 
27 bool
28 DisjList::IsCaseInsensitive() {
29 	return fCaseInsensitive;
30 }
31 
32 
33 
34 
35