Welcome to mirror list, hosted at ThFree Co, Russian Federation.

silly.cpp « dlltest « samples « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ee9e1fe77383247ca2289d5295a0c6b557a73758 (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
//
// C++ test of a dll which contains a C++ class.
//

#include <stdlib.h>
#include <stdio.h>

// Interface of class.
#include "silly.h"

#ifdef	DERIVED_TEST
// Here is a derived class too.
class CMoreSilly : public CSilly
{
  public:
	CMoreSilly (char* szNewName) : CSilly (szNewName) {};
	~CMoreSilly ();

	WhatsYourName();
};

CMoreSilly::
~CMoreSilly ()
{
	printf ("In CMoreSilly \"%s\" destructor!\n", szName);
}

CMoreSilly::
WhatsYourName ()
{
	printf ("I'm more silly and my name is \"%s\"\n", szName);
}
#endif

int
main ()
{
	CSilly*	psilly = new CSilly("silly");

	psilly->WhatsYourName();
	psilly->Poke();		// Poke him, he should say "Ouch!"
	psilly->Stab(4);	// Stab him four times he should say "Ugh!!!!"

	delete psilly;

#ifdef DERIVED_TEST
	psilly = new CMoreSilly("more silly");
	psilly->WhatsYourName();
	psilly->Stab(5);
	delete psilly;
#endif

	return 0;
}