1 //---------------------------------------------------------------------- 2 // This software is part of the OpenBeOS distribution and is covered 3 // by the OpenBeOS 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