r=brade sr=smfr a=sspitzer git-svn-id: svn://10.0.0.236/trunk@142258 18797224-902f-48f8-a5cc-f745e15eee43
22 lines
355 B
C++
22 lines
355 B
C++
|
|
|
|
#include "nsIGenericFactory.h"
|
|
|
|
#include "nsString.h"
|
|
#include "nsFindService.h"
|
|
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsFindService)
|
|
|
|
static const nsModuleComponentInfo gComponents[] = {
|
|
{
|
|
"Find Service",
|
|
NS_FIND_SERVICE_CID,
|
|
NS_FIND_SERVICE_CONTRACTID,
|
|
nsFindServiceConstructor
|
|
}
|
|
};
|
|
|
|
NS_IMPL_NSGETMODULE(nsFindComponent, gComponents)
|
|
|