00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef INCLUDED_CPPUHELPER_SUPPORTSSERVICE_HXX
00011 #define INCLUDED_CPPUHELPER_SUPPORTSSERVICE_HXX
00012
00013 #include "sal/config.h"
00014
00015 #include "cppuhelper/cppuhelperdllapi.h"
00016
00017 namespace com { namespace sun { namespace star { namespace lang {
00018 class XServiceInfo;
00019 } } } }
00020 namespace rtl { class OUString; }
00021
00022 namespace cppu {
00023
00041 bool CPPUHELPER_DLLPUBLIC supportsService(
00042 com::sun::star::lang::XServiceInfo * implementation,
00043 rtl::OUString const & name);
00044
00045 }
00046
00047 #endif
00048
00049