summaryrefslogtreecommitdiff
path: root/tests/tolua/libtest1/TestMod.pkg
blob: 2bb4ebc697f1bba28a36baac4ddd84a33bfddad3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$#include "TestMod.hpp"

$#include <string>

$using namespace std;

class Derived : public Base
{
	Derived( ) { }
		
	virtual ~Derived( ) { }
		
	virtual void hello( );
	virtual void hello( string msg );
};