[SOLVED] CS计算机代考程序代写 Hive //! @file

30 $

File Name: CS计算机代考程序代写_Hive_//[email protected]
File Size: 414.48 KB

SKU: 3125615264 Category: Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Or Upload Your Assignment Here:


//! @file
//! @brief Header file for DerivedCircleFromAbstractGeometricObject.cpp
//!

#ifndef CIRCLE_H
#define CIRCLE_H
#include “AbstractGeometricObject.h”

//! Rectangle class that is a subclass of the GeometricObject class
//! It needs to be a subclass of CObject in order to be serializable, and implement
//! a Serialize() member function
class Circle : public GeometricObject
{
public:
Circle();
Circle(double);
Circle(double radius, const string& color, bool filled);
double getRadius() const;
void setRadius(double);
double getArea() const;
double getPerimeter() const;
double getDiameter() const;
virtual void Serialize(CArchive& ar);
friend ostream& operator<<(ostream&, const Circle&);private:double radius;protected:DECLARE_SERIAL(Circle);};#endif

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[SOLVED] CS计算机代考程序代写 Hive //! @file
30 $