// XyzDlg.h: interface for the CXyzDlg class.
// Above is accurate after rename & text-replace X-y-z-Dlg.h.txt
//
// XyzDlg.h.txt: template for C-X-y-z-Dlg class derived from ZDlg class.
// To convert to .h for new CWhateverDlg dialog class, rename a copy
// to WhateverDlg.h, and do text-replace X-y-z-Dlg (WITHOUT hyphens) to new
// WhateverDlg name. Also see X-y-z-Dlg.cpp.txt for corresponding actions.
//
//////////////////////////////////////////////////////////////////////

#pragma once

#include "ZWinDlg.h"

//Never need .h declare?// BOOL XyzDlgProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);

class CXyzDlg : public ZDlg  
{
public:
	CXyzDlg(HINSTANCE hInst, CSettings * pSet, LPCTSTR sCapt1, LPCTSTR sCapt2 = NULL,
                ZWin * pOwner = NULL, ZWinAppData * pzwd = NULL);
	~CXyzDlg();
	BOOL OwnProc(HWND hDlg, UINT uMsg, WPARAM wP, LPARAM lP);

protected:
	CSettings * ini;

	BOOL OnInitDialog();
	void OnOk();

// Uncomment if used. Zdlg virtual handlers will call these if declared
//	void OnClose();
//	void OnDestroy();

};

