diff options
Diffstat (limited to 'ThirdParty/tolua-5.2.4/src/tests/tnamespace.h')
-rw-r--r-- | ThirdParty/tolua-5.2.4/src/tests/tnamespace.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ThirdParty/tolua-5.2.4/src/tests/tnamespace.h b/ThirdParty/tolua-5.2.4/src/tests/tnamespace.h new file mode 100644 index 0000000..8c15e41 --- /dev/null +++ b/ThirdParty/tolua-5.2.4/src/tests/tnamespace.h @@ -0,0 +1,11 @@ +namespace A { + enum {FIRST=1}; + extern int a; + namespace B { + extern int b; + namespace C { + extern int c; + } + } +} + |