February 01, 2005
gSOAP & Web Services
Listing 10
// file: circle.cpp
#include "soapH.h"
Circle::Circle() : Point(), r(1.0) {}
Circle::Circle(float x, float y, float r) : Point(x, y), r(r) {}
float Circle::radius() const
{ return r; }
|
|
||||||||||||||||||||||||||||
|
|
|
|