You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
318 B
C
21 lines
318 B
C
|
3 years ago
|
#pragma once
|
||
|
|
|
||
|
|
#ifndef __AFXWIN_H__
|
||
|
|
#error "include 'pch.h' before including this file for PCH"
|
||
|
|
#endif
|
||
|
|
|
||
|
|
// CutilityApp
|
||
|
|
// See utility.cpp for the implementation of this class
|
||
|
|
//
|
||
|
|
|
||
|
|
class CUtilityApp : public CWinApp
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
CUtilityApp();
|
||
|
|
|
||
|
|
// Overrides
|
||
|
|
public:
|
||
|
|
virtual BOOL InitInstance();
|
||
|
|
|
||
|
|
DECLARE_MESSAGE_MAP()
|
||
|
|
};
|