You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/debugger/debug-interface-access/cv-access-e.md
+35-35Lines changed: 35 additions & 35 deletions
Original file line number
Diff line number
Diff line change
@@ -2,47 +2,47 @@
2
2
title: "CV_access_e | Microsoft Docs"
3
3
ms.date: "11/04/2016"
4
4
ms.topic: "conceptual"
5
-
dev_langs:
5
+
dev_langs:
6
6
- "C++"
7
-
helpviewer_keywords:
7
+
helpviewer_keywords:
8
8
- "CV_access_e enumeration"
9
9
ms.assetid: 33c05d65-abb4-4800-a382-54a3805ea7b0
10
10
author: "mikejo5000"
11
11
ms.author: "mikejo"
12
12
manager: jillfra
13
-
ms.workload:
13
+
ms.workload:
14
14
- "multiple"
15
15
---
16
16
# CV_access_e
17
-
Specifies the scope of visibility (access level) of member functions and variables.
18
-
19
-
## Syntax
20
-
21
-
```C++
22
-
typedefenum CV_access_e {
23
-
CV_private = 1,
24
-
CV_protected = 2,
25
-
CV_public = 3
26
-
} CV_access_e;
27
-
```
28
-
29
-
## Elements
30
-
CV_private
31
-
Member has private access.
32
-
33
-
CV_protected
34
-
Member has protected access.
35
-
36
-
CV_public
37
-
Member has public access.
38
-
39
-
## Remarks
40
-
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](../../debugger/debug-interface-access/idiasymbol-get-symtag.md) method to find symbols with `SymTagFriend` access.
41
-
42
-
## Requirements
43
-
Header: cvconst.h
44
-
45
-
## See Also
46
-
[Enumerations and Structures](../../debugger/debug-interface-access/enumerations-and-structures.md)
Specifies the scope of visibility (access level) of member functions and variables.
18
+
19
+
## Syntax
20
+
21
+
```C++
22
+
typedefenum CV_access_e {
23
+
CV_private = 1,
24
+
CV_protected = 2,
25
+
CV_public = 3
26
+
} CV_access_e;
27
+
```
28
+
29
+
## Elements
30
+
CV_private
31
+
Member has private access.
32
+
33
+
CV_protected
34
+
Member has protected access.
35
+
36
+
CV_public
37
+
Member has public access.
38
+
39
+
## Remarks
40
+
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](../../debugger/debug-interface-access/idiasymbol-get-symtag.md) method to find symbols with `SymTagFriend` access.
41
+
42
+
## Requirements
43
+
Header: cvconst.h
44
+
45
+
## See Also
46
+
[Enumerations and Structures](../../debugger/debug-interface-access/enumerations-and-structures.md)
0 commit comments