Subversion-Projekte lars-tiefland.php_share

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php

class Point {
  var $x;
  var $y;
  
  function Point($x, $y) {
    $this->x = $x;
    $this->y = $y;
  }

  function _clone() {
    return new Point($this->x, $this->y);
  }
}

?>