git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4419 626c5289-ae23-0410-ae9c-e8d60b6d4f22
15 lines
178 B
OpenEdge ABL
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"; }
|
|
|
|
%}
|
|
|