30 lines
803 B
C
30 lines
803 B
C
|
// ContactInterface.h: Frame Gallary
|
||
|
//
|
||
|
//////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#if !defined(AFX_CONTACTINTERFACE_H__61397655_84DB_48A0_A5E4_041E75321807__INCLUDED_)
|
||
|
#define AFX_CONTACTINTERFACE_H__61397655_84DB_48A0_A5E4_041E75321807__INCLUDED_
|
||
|
|
||
|
#if _MSC_VER > 1000
|
||
|
#pragma once
|
||
|
#endif // _MSC_VER > 1000
|
||
|
|
||
|
#include "MainStrategy.h"
|
||
|
#include "CheckInterface.h"
|
||
|
#include "PrtMenuInterface.h"
|
||
|
|
||
|
class ContactInterface : public PrtMenuInterface
|
||
|
{
|
||
|
private:
|
||
|
MainStrategy* mainStrategy;
|
||
|
virtual MainStrategy* setMainStrategy(int) = 0;
|
||
|
virtual void removeMainStrategy(MainStrategy*) = 0;
|
||
|
protected:
|
||
|
int MainFunctionsNum;
|
||
|
public:
|
||
|
int main_menu();
|
||
|
virtual ~ContactInterface(){};
|
||
|
};
|
||
|
|
||
|
#endif // !defined(AFX_CONTACTINTERFACE_H__61397655_84DB_48A0_A5E4_041E75321807__INCLUDED_)
|