Поделиться через


BEGIN_SERVICE_MAP

Marks the beginning of the service map.

BEGIN_SERVICE_MAP( theClass )

Параметры

  • theClass
    [in] Specifies the class containing the service map.

Заметки

Use the service map to implement service provider functionality on your COM object. First, you must derive your class from IServiceProviderImpl. There are two types of entries:

Пример

BEGIN_SERVICE_MAP(CMyService)
   SERVICE_ENTRY(SID_SBindHost)  // This object supports the SBindHost service
   SERVICE_ENTRY_CHAIN(m_spClientSite) // Everything else, just ask the container
END_SERVICE_MAP()

Требования

Header: atlcom.h

См. также

Основные понятия

Service Map Macros

ATL Macros

END_SERVICE_MAP