dwww Home | Show directory contents | Find package

%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;
} 

%}

Generated by dwww version 1.15 on Tue Jul 2 00:27:34 CEST 2024.