#include "Point.hxx"
#include <stdio.h>    
#include <iostream>


ostream& operator<<(ostream &o,const Point& p)
{
  return o << "Abscisse " << p.x() << " Ordonnee " << p.y() << endl;
}


void Point::print(void) const
{
  printf("Abscisse %d Ordonnee %d \n",x(),y());
}

Point::~Point()
{
  NombrePoints_--;
}

int Point::NombrePoints_=0;
