Skip to content

Latest commit

 

History

History
50 lines (38 loc) · 1.52 KB

File metadata and controls

50 lines (38 loc) · 1.52 KB
title description ms.date ms.topic dev_langs helpviewer_keywords author ms.author manager ms.subservice
CV_access_e
Get information about the CV_access_e enumeration type, which specifies the scope of visibility (access level) of members in the debug interface access SDK.
11/04/2016
reference
C++
CV_access_e enumeration
mikejo5000
mikejo
mijacobs
debug-diagnostics

CV_access_e

Specifies the scope of visibility (access level) of member functions and variables.

Syntax

typedef enum CV_access_e {
    CV_private   = 1,
    CV_protected = 2,
    CV_public    = 3
} CV_access_e;

Elements

Element Description
CV_private Member has private access.
CV_protected Member has protected access.
CV_public Member has public access.

Remarks

The friend access specifier is not included here because it is typically used by non-member functions that have access to both private and protected elements of the class. Use the IDiaSymbol::get_symTag method to find symbols with SymTagFriend access.

Requirements

Header: cvconst.h

See also