blob: 3a0cf25227bc44c517795b7e16acdb1ef07d0e6b [file] [log] [blame]
%module array_typedef_memberin
%inline %{
typedef short arr_short8[8];
namespace ArrayExample
{
class ExampleDetail
{
public:
arr_short8 node_list;
};
}
%}