comparison src/SLStack-i.cc @ 2044:af075558c6b0

[project @ 1996-03-29 18:39:34 by jwe]
author jwe
date Fri, 29 Mar 1996 18:40:02 +0000
parents a7394e14f4a6
children 2480ef198c46
comparison
equal deleted inserted replaced
2043:a7394e14f4a6 2044:af075558c6b0
18 along with Octave; see the file COPYING. If not, write to the Free 18 along with Octave; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 20
21 */ 21 */
22 22
23 // Instantiate stacks of int values. 23 // Instantiate Stacks of int values.
24 24
25 compl#include <list> 25 #include "SLStack.h"
26 #include <stack> 26 #include "SLStack.cc"
27 27
28 template class stack <list <int> >; 28 template class SLNode<int>;
29 template class SLList<int>;
30 template class Stack<int>;
31 template class SLStack<int>;
29 32
30 /* 33 /*
31 ;;; Local Variables: *** 34 ;;; Local Variables: ***
32 ;;; mode: C++ *** 35 ;;; mode: C++ ***
33 ;;; End: *** 36 ;;; End: ***