| description | Learn more about: public (C++ Attributes) | |
|---|---|---|
| title | public (C++ Attributes) (C++ COM Attribute) | |
| ms.date | 10/02/2018 | |
| f1_keywords |
|
|
| helpviewer_keywords |
|
|
| ms.assetid | c42e1fd5-6cb1-48fe-8a03-95f2a2e0137c |
Ensures that a typedef will go into the type library even if it is not referenced from within the .idl file.
[public]The public C++ attribute has the same functionality as the public MIDL attribute.
The following code shows how to use the public attribute:
// cpp_attr_ref_public.cpp
// compile with: /LD
#include "unknwn.h"
[module(name="ATLFIRELib")];
[export, public] typedef long MEMBERID;
[dispinterface, uuid(99999999-9999-9999-9999-000000000000)]
__interface IFireTabCtrl : IDispatch
{
[id(2)] long procedure ([in, optional] VARIANT i);
};| Attribute context | Value |
|---|---|
| Applies to | typedef |
| Repeatable | No |
| Required attributes | None |
| Invalid attributes | None |
For more information about the attribute contexts, see Attribute Contexts.