28 lines
421 B
C++
28 lines
421 B
C++
// CDoubleParamWinApp.h
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#ifndef __AFXWIN_H__
|
|
#error include 'stdafx.h' before including this file for PCH
|
|
#endif
|
|
|
|
#include "resource.h" // main symbols
|
|
|
|
|
|
// CDoubleParamWinApp
|
|
// See CDoubleParamWinApp.cpp for the implementation of this class
|
|
//
|
|
|
|
class CDoubleParamWinApp : public CWinApp
|
|
{
|
|
public:
|
|
CDoubleParamWinApp();
|
|
|
|
// Overrides
|
|
public:
|
|
virtual BOOL InitInstance();
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|