git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10949 626c5289-ae23-0410-ae9c-e8d60b6d4f22
16 lines
211 B
OpenEdge ABL
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 >;
|