资源简介

我供搜集整理了近30个不同的C++课设源代码以及相应的报告,分别放在我的csdn和豆丁网上,搜索aoelfhong找到我,然后就可以找到我的这些资源了,另外我的豆丁还有39多个数据结构课设报告及代码。 仅供参考使用。

资源截图

代码片段和文件信息

// Bubble.cpp: implementation of the CBubble class.
//
//////////////////////////////////////////////////////////////////////

#include “stdafx.h“
#include “CPP.h“
#include “Bubble.h“

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
IMPLEMENT_SERIAL( CBubble Cobject 1 )

CBubble::CBubble()
{

}
CBubble::CBubble(CPoint m_pointint m_radiusCOLORREF m_colour)
{
this->m_point=m_point;
this->m_radius=m_radius;
    this->m_colour=m_colour;
}
CBubble::~CBubble()
{

}
void CBubble::Draw(CDC *pDC)
{
CBrush brush(m_colour);
pDC->Selectobject(&brush);
pDC->Ellipse(m_point.x-m_radiusm_point.y-m_radiusm_point.x+m_radiusm_point.y+m_radius);
}
void CBubble::Serialize(CArchive &ar)
{
if (ar.IsStoring())
{
ar< }
else
{
ar>>m_point>>m_radius>>m_colour;
}
}

评论

共有 条评论