swig/Examples/pike/class/example.cxx
Dave Beazley 12a43edc2d The great merge
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4141 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2002-11-30 22:01:28 +00:00

48 lines
744 B
C++
Executable file

/* File : example.c */
#include "example.h"
#include <stdio.h>
#define M_PI 3.14159265358979323846
// Static member initializer
int Shape::nshapes = 0;
// Constructor
Shape::Shape() {
// printf("Shape::Shape(), this = 0x%08x\n", this);
nshapes++;
}
// Move the shape to a new location
void Shape::move(double dx, double dy) {
x += dx;
y += dy;
}
// Destructor
Shape::~Shape() {
// printf("Shape::~Shape(), this = 0x%08x\n", this);
nshapes--;
}
// Circle area
double Circle::area() {
return M_PI*radius*radius;
}
// Circle perimeter
double Circle::perimeter() {
return 2*M_PI*radius;
}
// Square area
double Square::area() {
return width*width;
}
// Square perimeter
double Square::perimeter() {
return 4*width;
}