summaryrefslogtreecommitdiff
path: root/libcult/examples/mm/shptr/shptr.cxx
blob: cb026d4cbcd02326c8a32b185aec7f061256e3a2 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// file      : examples/mm/shptr/shptr.cxx
// author    : Boris Kolpackov <boris@kolpackov.net>
// copyright : Copyright (c) 2005-2010 Boris Kolpackov
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#include <cult/mm/shptr.hxx>
#include <cult/mm/new.hxx>     // MM::locate
#include <cult/mm/counter.hxx> // MM::inc_ref

#include <iostream>

using std::cerr;
using std::endl;

using namespace Cult;
using namespace MM;

struct Foo 
{
  virtual ~Foo () {} 
  char c;
};

struct Bar: virtual Foo {char c;};

struct Baz: virtual Foo {char c;};

struct Fox: Bar, Baz {};


struct A
{
  char c[8];
};

struct B
{
  char c[8];
};

struct C : A, B
{
  char c[8];
};

int
main ()
{
  {
    Baz* bp (new Fox);
    Foo* fp (bp);

    Counter* cp (locate (fp, *counted));

    inc_ref (bp);

    cp->dec_ref ();

    if (cp->dec_ref ()) cerr << "good: destroying" << endl;
    else cerr << "bad: leaking" << endl;

    delete bp;
  }

  {
    Shptr<Fox> pfox (new Fox);
    Shptr<Bar> pbar (pfox);

    Shptr<Foo> pfoo;

    pfoo = pbar;
  }
}