C++
#define acrxServiceDictionary \ AcRxDictionary::cast(acrxSysRegistry()->at(ACRX_SERVICE_DICTIONARY))
File
rxdict.h
Description
The acrxServiceDictionary macro provides a pointer to the ObjectARX system dictionary of service objects. This dictionary contains service objects for all registered services in the ObjectARX system. The registered service names are used as the keys for the entries.
The actual definition of the macro is as follows.
#define ACRX_SERVICE_DICTIONARY "ServiceDictionary" #define acrxServiceDictionary AcRxDictionary::cast(acrxSysRegistry()->at(ACRX_SERVICE_DICTIONARY))
This macro should be used to remove any services an application has registered. An example of this use is:
delete acrxServiceDictionary->remove("My_App_Service");