~ubuntu-branches/ubuntu/edgy/swig1.3/edgy

« back to all changes in this revision

Viewing changes to Examples/php4/overloading/runme.php4

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-12-05 01:16:04 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051205011604-ygx904it6413k3go
Tags: 1.3.27-1ubuntu1
Resynchronise with Debian again, for the new subversion packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
 
 
3
# This file illustrates the low-level C++ interface
 
4
# created by SWIG.  In this case, all of our C++ classes
 
5
# get converted into function calls.
 
6
 
 
7
include("example.php");
 
8
 
 
9
# ----- Object creation -----
 
10
 
 
11
print "Creating some objects:\n";
 
12
$c = new Circle(10);
 
13
print "    Created circle $c\n";
 
14
$s = new Square(10);
 
15
print "    Created square $s\n";
 
16
 
 
17
# ----- Access a static member -----
 
18
 
 
19
print "\nA total of " . Shape::nshapes() . " shapes were created\n";
 
20
 
 
21
# ----- Member data access -----
 
22
 
 
23
# Set the location of the object.
 
24
# Note: methods in the base class Shape are used since
 
25
# x and y are defined there.
 
26
 
 
27
$c->x = 20;
 
28
$c->y = 30;
 
29
$s->x = -10;
 
30
$s->y = 5;
 
31
 
 
32
print "\nHere is their current position:\n";
 
33
print "    Circle = (" . $c->x . "," . $c->y . ")\n";
 
34
print "    Square = (" . $s->x . "," . $s->y . ")\n";
 
35
 
 
36
# ----- Call some methods -----
 
37
 
 
38
print "\nHere are some properties of the shapes:\n";
 
39
foreach (array(1,2.1,"3.6",$c,$s) as $o) {
 
40
      print "    ".get_class($o)." $o\n";
 
41
      print "        overloaded= " .  overloaded($o) . "\n";
 
42
  }
 
43
 
 
44
# Need to unset($o) or else we hang on to a reference to the Square object.
 
45
unset($o);
 
46
 
 
47
# ----- Delete everything -----
 
48
 
 
49
print "\nGuess I'll clean up now\n";
 
50
 
 
51
# Note: this invokes the virtual destructor
 
52
unset($c);
 
53
$s = 42;
 
54
 
 
55
print Shape::nshapes() . " shapes remain\n";
 
56
 
 
57
print "Goodbye\n";
 
58
 
 
59
?>