1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/filtfind.cpp
3 // Purpose: Streams for filter formats
4 // Author: Mike Wetherell
5 // Copyright: (c) Mike Wetherell
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
9 // For compilers that support precompilation, includes "wx.h".
10 #include "wx/wxprec.h"
18 #include "wx/stream.h"
20 // These functions are in a separate file so that statically linked apps
21 // that do not call them to search for filter handlers will only link in
22 // the filter classes they use.
24 const wxFilterClassFactory
*
25 wxFilterClassFactory::Find(const wxString
& protocol
, wxStreamProtocolType type
)
27 for (const wxFilterClassFactory
*f
= GetFirst(); f
; f
= f
->GetNext())
28 if (f
->CanHandle(protocol
, type
))
35 const wxFilterClassFactory
*wxFilterClassFactory::GetFirst()
42 #endif // wxUSE_STREAMS