mirror of
https://github.com/fadden/ciderpress.git
synced 2025-01-02 15:30:02 +00:00
eff69cce86
Mostly uninitialized class members. Should not cause a change in behavior.
46 lines
978 B
C++
46 lines
978 B
C++
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* A simple dialog to display the results of an EOL scan.
|
|
*/
|
|
#ifndef APP_EOLSCANDIALOG_H
|
|
#define APP_EOLSCANDIALOG_H
|
|
|
|
#include "resource.h"
|
|
|
|
/*
|
|
* Entire class is here.
|
|
*/
|
|
class EOLScanDialog : public CDialog {
|
|
public:
|
|
EOLScanDialog(CWnd* pParentWnd = NULL) :
|
|
CDialog(IDD_EOLSCAN, pParentWnd),
|
|
fCountChars(0),
|
|
fCountCR(0),
|
|
fCountLF(0),
|
|
fCountCRLF(0),
|
|
fCountHighASCII(0)
|
|
{}
|
|
virtual ~EOLScanDialog(void) {}
|
|
|
|
long fCountChars;
|
|
long fCountCR;
|
|
long fCountLF;
|
|
long fCountCRLF;
|
|
long fCountHighASCII;
|
|
|
|
private:
|
|
BOOL OnInitDialog(void) override;
|
|
|
|
afx_msg void OnHelp(void) {
|
|
MyApp::HandleHelp(this, HELP_TOPIC_EOL_SCAN);
|
|
}
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#endif /*APP_EOLSCANDIALOG_H*/
|