DECLARE_ONLY_AGGREGATABLE
Visual Studio 2012
Specifies that your object must be aggregated.
DECLARE_ONLY_AGGREGATABLE( x )
DECLARE_ONLY_AGGREGATABLE causes an error (E_FAIL) if an attempt is made to CoCreate your object as nonaggregated object.
By default, CComCoClass contains the DECLARE_AGGREGATABLE macro, which specifies that your object can be aggregated. To override this default behavior, include DECLARE_ONLY_AGGREGATABLE in your class definition.