swig/Examples/test-suite/ruby/li_std_stack.i
Gonzalo Garramuno 5e27a6828a Added an implementation of std_stack.i with
proper tests.



git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9778 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2007-05-06 05:13:17 +00:00

16 lines
211 B
OpenEdge ABL

/**
* @file std_stack.i
* @author gga
* @date Sun May 6 01:52:44 2007
*
* @brief test of std::stack
*
*
*/
%module li_std_stack
%include std_stack.i
%template( IntStack ) std::stack< int >;