more functions to test director string ref

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7107 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2005-03-29 20:49:33 +00:00
commit b7917fdaef

View file

@ -28,6 +28,12 @@ struct A
virtual const std::string& get(int n) const
{ return m_strings[n]; }
virtual const std::string& call_get_first() const
{ return get_first(); }
virtual const std::string& call_get(int n) const
{ return get(n); }
std::vector<std::string> m_strings;
};