AccessType Enumeration
Represents a C++ access modifier of a class member. Visual Studio uses this when displaying the member icon.
Namespace: VisualGDBExpressionsAssembly: VisualGDBExpressions (in VisualGDBExpressions.dll) Version: 5.6.109.1 (5.6.109.4849)
Unspecified | 0 |
The access modifier was not provided by GDB.
|
Private | 1 |
The member is private.
|
Protected | 2 |
The member is protected.
|
Public | 3 |
The member is public.
|
Internal | 4 |
The member is internal. Although not supported by C++, this value can be used by the expression filters as Visual Studio supports it.
|