git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4959 626c5289-ae23-0410-ae9c-e8d60b6d4f22
31 lines
518 B
OpenEdge ABL
31 lines
518 B
OpenEdge ABL
//
|
|
// SWIG typemaps for std::pair
|
|
// Luigi Ballabio
|
|
// July 2003
|
|
//
|
|
// Common implementation
|
|
|
|
%include std_common.i
|
|
%include exception.i
|
|
|
|
// ------------------------------------------------------------------------
|
|
// std::pair
|
|
// ------------------------------------------------------------------------
|
|
|
|
%{
|
|
#include <utility>
|
|
%}
|
|
|
|
// exported class
|
|
|
|
namespace std {
|
|
|
|
template<class T, class U> struct pair {
|
|
// add typemaps here
|
|
T first;
|
|
U second;
|
|
};
|
|
|
|
// add specializations here
|
|
|
|
}
|