add char* string test

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7419 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2005-09-09 17:58:43 +00:00
commit 6d39fe1341
2 changed files with 18 additions and 0 deletions

View file

@ -35,6 +35,13 @@ struct A
{ return get(n); }
std::vector<std::string> m_strings;
virtual void process_text(const char *text)
{
}
void call_process_func() { process_text("hello"); }
};
%}