// MFCHelloCpp.h : main header file for the MFCHelloCpp application
//
#pragma once

#ifndef __AFXWIN_H__
    #error "include 'stdafx.h' before including this file for PCH"
#endif

#include "resource.h"       // main symbols


// CMFCHelloCppApp:
// See MFCHelloCpp.cpp for the implementation of this class
//

class CMFCHelloCppApp : public CWinApp
{
public:
    CMFCHelloCppApp();


// Overrides
public:
    virtual BOOL InitInstance();
    virtual int ExitInstance();

// Implementation
    afx_msg void OnAppAbout();
    DECLARE_MESSAGE_MAP()
};

extern CMFCHelloCppApp theApp;