mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-02-13 07:01:32 +00:00
25 lines
360 B
C
25 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
|
||
|
|