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

silly.h « dlltest « samples « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3f99bed8dba5c32c794185148117a3b27ec07af (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

#define	DERIVED_TEST	1

class CSilly
{
  protected:
	char*	szName;

  public:
	CSilly();
	CSilly(char* szName);
#ifdef DERIVED_TEST
	virtual ~CSilly();
#else
	~CSilly();
#endif

	Poke ();
	Stab (int nTimes);
#ifdef DERIVED_TEST
	virtual WhatsYourName ();
#else
	WhatsYourName ();
#endif

};