|
From: Andy D. <an...@do...> - 2007-04-21 13:10:32
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
<title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
<pre wrap="">I am trying to write an interface file for std::set, based largely on the
existing one for std::string.
However, when I specify a typemap of the form:
%typemap(in) set { ...blah blah... };
then this never matches.
However, if I change this to:
%typemap(in) <b>std::</b>set { ...blah blah... };
then a match occurs correctly.
The question is, if this works for std::string, why not for std::set?
Thanks
</pre>
</body>
</html>
|