Sign in
fuchsia
/
third_party
/
swig
/
5cc90e6f5b321cae8e7290dc055d3e13543a2155
/
.
/
Examples
/
test-suite
/
smart_pointer_const.i
blob: 3100a021ef5dcb69abae36ea5a3ba0c419b684e5 [
file
] [
log
] [
blame
]
%
module
smart_pointer_const
%
inline
%{
struct
Foo
{
int
x
;
int
getx
()
const
{
return
x
;
}
};
class
Bar
{
Foo
*
f
;
public
:
Bar
(
Foo
*
f
)
:
f
(
f
)
{
}
Foo
*
operator
->()
{
return
f
;
}
};
%}