@@ -56,8 +56,7 @@ These macros provide ways of controlling aggregation and of declaring class fact
5656 Specifies that your object can be aggregated.
5757
5858```
59- DECLARE_AGGREGATABLE(Â
60- x Â)
59+ DECLARE_AGGREGATABLE( x )
6160```
6261
6362### Parameters
@@ -112,8 +111,7 @@ public CComObjectRootEx<CComGlobalsThreadModel>
112111 Declares ` cf ` to be the class factory.
113112
114113```
115- DECLARE_CLASSFACTORY_EX(Â
116- cf Â)
114+ DECLARE_CLASSFACTORY_EX( cf )
117115```
118116
119117### Parameters
@@ -132,8 +130,7 @@ DECLARE_CLASSFACTORY_EX(Â
132130 Declares [ CComClassFactory2] ( ../../atl/reference/ccomclassfactory2-class.md ) to be the class factory.
133131
134132```
135- DECLARE_CLASSFACTORY2(Â
136- lic Â)
133+ DECLARE_CLASSFACTORY2( lic )
137134```
138135
139136### Parameters
@@ -150,12 +147,10 @@ DECLARE_CLASSFACTORY2(Â
150147 This class implements the [ IClassFactory2] ( http://msdn.microsoft.com/library/windows/desktop/ms692720 ) interface.
151148
152149```
153- template <class
154- license>
150+ template <class license>
155151class CComClassFactory2 : public IClassFactory2,
156152 public CComObjectRootEx<CComGlobalsThreadModel>,
157- public
158- license
153+ public license
159154```
160155
161156### Parameters
@@ -218,8 +213,7 @@ public CComObjectRootEx<CComGlobalsThreadModel>
218213 Declares [ CComClassFactorySingleton] ( ../../atl/reference/ccomclassfactorysingleton-class.md ) to be the class factory.
219214
220215```
221- DECLARE_CLASSFACTORY_SINGLETON(Â
222- obj Â)
216+ DECLARE_CLASSFACTORY_SINGLETON( obj )
223217```
224218
225219### Parameters
@@ -239,9 +233,7 @@ DECLARE_CLASSFACTORY_SINGLETON(Â
239233> This class and its members cannot be used in applications that execute in the Windows Runtime.
240234
241235```
242- template<
243- class
244- T>
236+ template<class T>
245237class CComClassFactorySingleton :
246238public CComClassFactory
247239```
@@ -271,8 +263,7 @@ DECLARE_GET_CONTROLLING_UNKNOWN()
271263 Specifies that your object cannot be aggregated.
272264
273265```
274- DECLARE_NOT_AGGREGATABLE(Â
275- x Â)
266+ DECLARE_NOT_AGGREGATABLE( x )
276267```
277268
278269### Parameters
@@ -291,8 +282,7 @@ DECLARE_NOT_AGGREGATABLE(Â
291282 Specifies that your object must be aggregated.
292283
293284```
294- DECLARE_ONLY_AGGREGATABLE(Â
295- x Â)
285+ DECLARE_ONLY_AGGREGATABLE( x )
296286```
297287
298288### Parameters
@@ -311,8 +301,7 @@ DECLARE_ONLY_AGGREGATABLE(Â
311301 Specifies that an instance of ** CComPolyObject \< ** * x* ** >** is created when your object is created.
312302
313303```
314- DECLARE_POLY_AGGREGATABLE(Â
315- x Â)
304+ DECLARE_POLY_AGGREGATABLE( x )
316305```
317306
318307### Parameters
@@ -337,8 +326,7 @@ DECLARE_PROTECT_FINAL_CONSTRUCT()
337326 Place this macro in an ATL ActiveX control's control class to specify the ** VIEWSTATUS** flags to the container.
338327
339328```
340- DECLARE_VIEW_STATUS(Â
341- statusFlags Â)
329+ DECLARE_VIEW_STATUS( statusFlags )
342330```
343331
344332### Parameters
0 commit comments