selectitemvisitor.cpp
来自「包含几乎所有的c语言的库函数」· C++ 代码 · 共 65 行
CPP
65 行
// SelectItemVisitor.cpp: implementation of the SelectItemVisitor class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "PainterUsePattern.h"
#include "SelectItemVisitor.h"
#include "Point.h"
#include "Line.h"
#include "Rect.h"
#include "Circle.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//=================================================================
//
//=================================================================
SelectItemVisitor::SelectItemVisitor()
{
}
//=================================================================
//
//=================================================================
SelectItemVisitor::~SelectItemVisitor()
{
}
//=================================================================
//
//=================================================================
void SelectItemVisitor::VisitCircle( Circle* c ,CDC* pDC )
{
}
//=================================================================
//
//=================================================================
void SelectItemVisitor::VisitLine( Line* l ,CDC* pDC )
{
}
//=================================================================
//
//=================================================================
void SelectItemVisitor::VisitPoint( Point* ,CDC* pDC )
{
}
//=================================================================
//
//=================================================================
void SelectItemVisitor::VisitRect( Rect* r ,CDC* pDC )
{
}
//=================================================================
//
//=================================================================
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?