Скачиваний:
16
Добавлен:
01.05.2014
Размер:
908 б
Скачать
// Laba3.h : main header file for the Laba3 application
//
#pragma once

#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif

#include "resource.h"       // main symbols
#include "czmklomanaya.h"
#include "cOtrezok.h"
#include "clomanaya.h"


// CLaba3App:
// See Laba3.cpp for the implementation of this class
//

#define ACTION_SET_ZMK_LOMANAYU		1
#define ACTION_SET_OTREZOK_P1		2
#define ACTION_SET_OTREZOK_P2		3

#define OUT_LOMANAYA				1
#define IN_LOMANAYA					2

class CLaba3App : public CWinApp
{
public:
	CLaba3App();
	cZmkLomanaya ZmkLmn;
	cOtrezok Otrezok;
	int HaveZmkLmn;
	int CurrentAction;
	cLomanaya Lomanaya;
	int StartType;

// Overrides
public:
	virtual BOOL InitInstance();

// Implementation
	afx_msg void OnAppAbout();
	DECLARE_MESSAGE_MAP()
	
	afx_msg void OnFileClear();
};

extern CLaba3App theApp;
Соседние файлы в папке Laba3