Sign in
fuchsia
/
third_party
/
swig
/
ad876e81899f633da5aec4d4d361717807c494be
/
.
/
Examples
/
test-suite
/
lua_inherit_getitem.i
blob: 82c055dd1e2a605204aaa9e5c5a0c474389f6847 [
file
] [
log
] [
blame
]
%
module
lua_inherit_getitem
%
inline
%{
class
CBase
{
public
:
const
char
*
Foo
(
void
)
{
return
"CBase::Foo"
;
}
};
class
CDerived
:
public
CBase
{
public
:
void
*
__getitem
(
const
char
*
name
)
const
{
return
NULL
;
}
};
%}