summaryrefslogtreecommitdiff
path: root/Examples/go/director/director.h
blob: e08c11594da094199e0644a0a00f41b267962129 (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
#ifndef DIRECTOR_H
#define DIRECTOR_H


#include <stdio.h>
#include <string>


class FooBarAbs
{
public:
	FooBarAbs() {};
	virtual ~FooBarAbs() {};

	std::string FooBar() {
		return this->Foo() + ", " + this->Bar();
	};

protected:
	virtual std::string Foo() {
		return "Foo";
	};

	virtual std::string Bar() = 0;
};


class FooBarCpp : public FooBarAbs
{
protected:
	virtual std::string Foo() {
		return "C++ " + FooBarAbs::Foo();
	}

	virtual std::string Bar() {
		return "C++ Bar";
	}
};


#endif