zhuang@linux:~/reading/programming-windows-with-mfc/01-hello-mfc/$ less

Programming Windows with MFC / chapter 01

Hello, MFC

$ grep tags 01-hello-mfc.md

This post extracts some knowledge from Programming Windows with MFC Chapter 1 – Hello, MFC.

MFC is the C++ class library Microsoft provides to place an object-oriented wrapper around the Windows API.

MFC is also an application framework. More than merely a collection of classes, MFC helps define the structure of an application and handles many routine chores on the application’s behalf.

CObject provides three important features to classes that inherit from it:

  • Serialization support
  • Run-time class information support
  • Diagnostic and debugging support

zhuang@linux:~/reading/programming-windows-with-mfc/01-hello-mfc/$ comments