Globals in MFC

MFC class framework makes possible to work easily with global variables and functions. Let's declare a static member variable or function in the CWinApp derived class. It is accessible from all classes.

Example:

// MyApp.h
class CMyApp : public CWinApp
{
public:
  CMyApp();

  static int g_nMyVariable;      // declaration
  static void g_MyFunction();    // declaration
  ...
  etc
  ...
};
// MyApp.cpp
int CMyApp::g_nMyVariable = NULL;     // definition & initialization
void CMyApp::g_MyFunction()        // definition
{
}

Now the variable and the function are accessible through the syntax CMyApp::g_nMyVariable or CMyApp::g_MyFunction from any other class...

 

IT Offers

Comments

  • EKoHY NkY RYtU

    Posted by wfAahmllrb on 11/15/2012 08:45pm

    buy soma carisoprodol grapefruit juice - can you really buy soma online

    Reply
  • vetqI Ibm TMZI

    Posted by cVNExPQHwR on 11/14/2012 01:57am

    carisoprodol 350 mg carisoprodol 350 mg erowid - somanabolic muscle maximizer side effects

    Reply
Leave a Comment
  • Your email address will not be published. All fields are required.

Go Deeper

Most Popular Programming Stories

More for Developers

Latest Developer Headlines

RSS Feeds