aboutsummaryrefslogtreecommitdiff
path: root/src/old/tests/sptr.cpp
blob: 38d3675674ec2f76aee6f355b5d08fc41e64ef0f (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
#include <stdio.h>
#include "sptr.h"

class Annoy
{
public:
	Annoy() : nCnt( 0 )
	{
		printf("Created.\n");
	}

	~Annoy()
	{
		printf("Destroyed.\n");
	}

	void go()
	{
		printf("%d: I'm annoying.\n", ++nCnt);
	}

	int nCnt;
};

void beAnnoying( SPtr<Annoy> bob )
{
	printf("bob-Count: %d\n", bob.count() );
	bob->go();
}

int main()
{
	SPtr<Annoy> pt( new Annoy );
	printf("Count: %d\n", pt.count() );
	pt->go();

	{
		SPtr<Annoy> pt2 = pt;
		printf("Count: %d\n", pt2.count() );

		pt2->go();

		{
			SPtr<Annoy> pt3( pt2 );
			printf("Count: %d\n", pt3.count() );

			pt3->go();

			beAnnoying( pt3 );
		}
		printf("Count: %d\n", pt.count() );
	}
	printf("Count: %d\n", pt.count() );
}