root / trunk / win / Leocad.h

Revision 724, 0.6 kB (checked in by Leo, 7 months ago)

Small cleanup.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1#ifndef _LEOCAD_H_
2#define _LEOCAD_H_
3
4#include "resource.h"       // main symbols
5
6class CCADApp : public CWinApp
7{
8public:
9    CCADApp();
10
11// Overrides
12    // ClassWizard generated virtual function overrides
13    //{{AFX_VIRTUAL(CCADApp)
14    public:
15    virtual BOOL InitInstance();
16    virtual int ExitInstance();
17    //}}AFX_VIRTUAL
18
19// Implementation
20    void OnUpdateRecentFileMenu(CCmdUI* /*pCmdUI*/) {};
21
22    //{{AFX_MSG(CCADApp)
23    afx_msg void OnHelpUpdates();
24    afx_msg void OnHelpHomePage();
25    afx_msg void OnHelpEmail();
26    //}}AFX_MSG
27    DECLARE_MESSAGE_MAP()
28};
29
30extern CCADApp theApp;
31
32#ifdef _DEBUG
33void wprintf(char *fmt, ...);
34#endif
35
36#endif // _LEOCAD_H_
Note: See TracBrowser for help on using the browser.