//----------------------------------------------------------------------// This software is part of the Haiku distribution and is covered// by the MIT License.//---------------------------------------------------------------------/*!\file DisjList.cppMIME sniffer Disjunction List class implementation*/#include <sniffer/DisjList.h>using namespace BPrivate::Storage::Sniffer;DisjList::DisjList(): fCaseInsensitive(false){}DisjList::~DisjList() {}voidDisjList::SetCaseInsensitive(bool how) {fCaseInsensitive = how;}boolDisjList::IsCaseInsensitive() {return fCaseInsensitive;}