mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-02-02 20:31:22 +00:00
24 lines
360 B
C
24 lines
360 B
C
|
////////////////////////////////////////
|
||
|
// ScribbleApp.h
|
||
|
|
||
|
#ifndef SCRIBBLEAPP_H
|
||
|
#define SCRIBBLEAPP_H
|
||
|
|
||
|
#include "targetver.h"
|
||
|
#include "Wincore.h"
|
||
|
#include "Mainfrm.h"
|
||
|
|
||
|
|
||
|
class CScribbleApp : public CWinApp
|
||
|
{
|
||
|
public:
|
||
|
CScribbleApp();
|
||
|
virtual ~CScribbleApp() {}
|
||
|
virtual BOOL InitInstance();
|
||
|
|
||
|
private:
|
||
|
CMainFrame m_Frame;
|
||
|
};
|
||
|
|
||
|
#endif // SCRIBBLEAPP_H
|