Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4b4055ade2dd4bb716a495dec9ea9620025a9ceb (plain) (blame)
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
#include <Simple.h>

#include <iostream>

#define NULL (void *)0

SimpleClass::SimpleClass( void )
{
	init( NULL );
}

SimpleClass::~SimpleClass( void )
{
}

SimpleClass::SimpleClass( const SimpleClass & arg )
{
	//TODO: copy constructor
}

SimpleClass & SimpleClass::operator=( const SimpleClass & arg )
{
	if( this != &arg )
	{
	}
	return *this;
}


void SimpleClass::init( void * foo)
{
}

InnerStruct & SimpleClass::getInner( void )
{
	return inner;
}

Back to the top