git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10290 626c5289-ae23-0410-ae9c-e8d60b6d4f22
21 lines
342 B
Matlab
21 lines
342 B
Matlab
director_wstring
|
|
|
|
|
|
B=@(string) subclass(A(string),\
|
|
'get_first',A.get_first(self) + " world!",\
|
|
'process_text',@(self) self.smem = u"hello"\
|
|
);
|
|
|
|
b = B("hello");
|
|
|
|
b.get(0);
|
|
if (!strcmp(b.get_first(),"hello world!"))
|
|
error(b.get_first())
|
|
endif
|
|
|
|
b.call_process_func();
|
|
|
|
if (!strcmp(b.smem,"hello"))
|
|
error(smem)
|
|
endif
|
|
|