Skip to content

Commit

Permalink
Merge pull request MicrosoftDocs#1498 from drvoss/patch-55
Browse files Browse the repository at this point in the history
Update using-the-mfc-source-files.md
  • Loading branch information
Colin Robertson authored Aug 12, 2019
2 parents 78a2d1e + 5e0fd03 commit 94a6bd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/mfc/using-the-mfc-source-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This family of articles explains the conventions that MFC uses to comment the va

You might be familiar with the **public**, **protected**, and **private** C++ keywords. When looking at the MFC header files, you will find that each class may have several of each of these. For example, public member variables and functions might be under more than one **public** keyword. This is because MFC separates member variables and functions based on their use, not by the type of access allowed. MFC uses **private** sparingly; even items considered implementation details are generally protected and many times are public. Although access to the implementation details is discouraged, MFC leaves the decision to you.

In both the MFC source files and the files that the MFC Application Wizard creates, you will find comments like these within class declarations (usually in this order):
In both the MFC source files and the header files that the MFC Application Wizard creates, you will find comments like these within class declarations (usually in this order):

`// Constructors`

Expand Down

0 comments on commit 94a6bd7

Please sign in to comment.