git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6087 626c5289-ae23-0410-ae9c-e8d60b6d4f22
20 lines
240 B
OpenEdge ABL
20 lines
240 B
OpenEdge ABL
%module cast_operator
|
|
|
|
%rename(tochar) A::operator char*() const;
|
|
%inline %{
|
|
#include <string.h>
|
|
struct A
|
|
{
|
|
operator char*() const;
|
|
};
|
|
|
|
inline
|
|
A::operator char*() const
|
|
{
|
|
static char hi[16];
|
|
strcpy(hi, "hi");
|
|
return hi;
|
|
}
|
|
|
|
%}
|
|
|