// // SWIG typemaps for std::pair // Luigi Ballabio // July 2003 // // Common implementation %include std_common.i %include exception.i // ------------------------------------------------------------------------ // std::pair // ------------------------------------------------------------------------ %{ #include %} // exported class namespace std { template struct pair { // add typemaps here T first; U second; }; // add specializations here }