Skip to content

Commit 98c3cbb

Browse files
authored
Merge pull request #2543 from changeworld/patch-59
Delete unnecessary spaces
2 parents 2f53293 + 10503c1 commit 98c3cbb

File tree

1 file changed

+35
-35
lines changed

1 file changed

+35
-35
lines changed

docs/debugger/debug-interface-access/cv-access-e.md

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -2,47 +2,47 @@
22
title: "CV_access_e | Microsoft Docs"
33
ms.date: "11/04/2016"
44
ms.topic: "conceptual"
5-
dev_langs:
5+
dev_langs:
66
- "C++"
7-
helpviewer_keywords:
7+
helpviewer_keywords:
88
- "CV_access_e enumeration"
99
ms.assetid: 33c05d65-abb4-4800-a382-54a3805ea7b0
1010
author: "mikejo5000"
1111
ms.author: "mikejo"
1212
manager: jillfra
13-
ms.workload:
13+
ms.workload:
1414
- "multiple"
1515
---
1616
# CV_access_e
17-
Specifies the scope of visibility (access level) of member functions and variables.
18-
19-
## Syntax
20-
21-
```C++
22-
typedef enum 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)
47-
[IDiaSymbol::get_access](../../debugger/debug-interface-access/idiasymbol-get-access.md)
48-
[IDiaSymbol::get_symTag](../../debugger/debug-interface-access/idiasymbol-get-symtag.md)
17+
Specifies the scope of visibility (access level) of member functions and variables.
18+
19+
## Syntax
20+
21+
```C++
22+
typedef enum 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)
47+
[IDiaSymbol::get_access](../../debugger/debug-interface-access/idiasymbol-get-access.md)
48+
[IDiaSymbol::get_symTag](../../debugger/debug-interface-access/idiasymbol-get-symtag.md)

0 commit comments

Comments
 (0)