summaryrefslogtreecommitdiff
path: root/tolua/src/tests/tnamespace.cpp
blob: 0884d358996c503a58cca59f69b60f9454bb5ea2 (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
extern "C" {
#include "lualib.h"
#include "lauxlib.h"
}

#include "tnamespace.h"

int A::a = 1;
int A::B::b = 2;
int A::B::C::c = 3;

int main ()
{
	int  tolua_tnamespace_open (lua_State*);

	lua_State* L = luaL_newstate();
	luaL_openlibs(L);
	tolua_tnamespace_open(L);

	luaL_dofile(L,"tnamespace.lua");

	lua_close(L);
	return 0;
}