swig/Examples/test-suite/cast_operator.i
Dave Beazley cba4b57a64 *** empty log message ***
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4419 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2003-02-27 19:37:29 +00:00

15 lines
178 B
OpenEdge ABL

%module cast_operator
%rename(tochar) A::operator char*() const;
%inline %{
struct A
{
operator char*() const;
};
inline
A::operator char*() const
{ return "hi"; }
%}