summaryrefslogtreecommitdiff
path: root/Examples/test-suite/li_factory.i
blob: 7c59d53b233a88088df043b098c03d62e557509c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
%module li_factory
%include factory.i

%newobject Geometry::create;

%newobject Geometry::clone;
%factory(Geometry *Geometry::create, Point, Circle);
%factory(Geometry *Geometry::clone, Point, Circle);
#ifdef SWIGPHP
%rename(clone_) clone;
#endif
%factory(Geometry *Point::clone, Point, Circle);
%factory(Geometry *Circle::clone, Point, Circle);

%inline {
  struct Geometry {
    enum GeomType{
      POINT,
      CIRCLE
    };
    
    virtual ~Geometry() {}    
    virtual int draw() = 0;
    static Geometry *create(GeomType i);
		virtual Geometry *clone() = 0;
  };

  struct Point : Geometry  {
    int draw() { return 1; }
    double width() { return 1.0; }    
		Geometry *clone() { return new Point(); }
  };

  struct Circle : Geometry  {
    int draw() { return 2; }
    double radius() { return 1.5; }      
		Geometry *clone() { return new Circle(); }
  }; 

  Geometry *Geometry::create(GeomType type) {
    switch (type) {
    case POINT: return new Point();
    case CIRCLE: return new Circle(); 
    default: return 0;
    }
  }
}