changeset 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 44808b67cda7
files src/SLStack-i.cc src/SLStack-pc.cc
diffstat 2 files changed, 16 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/src/SLStack-i.cc
+++ b/src/SLStack-i.cc
@@ -20,12 +20,15 @@
 
 */
 
-// Instantiate stacks of int values.
+// Instantiate Stacks of int values.
+
+#include "SLStack.h"
+#include "SLStack.cc"
 
-compl#include <list>
-#include <stack>
-
-template class stack <list <int> >;
+template class SLNode<int>;
+template class SLList<int>;
+template class Stack<int>;
+template class SLStack<int>;
 
 /*
 ;;; Local Variables: ***
--- a/src/SLStack-pc.cc
+++ b/src/SLStack-pc.cc
@@ -20,12 +20,15 @@
 
 */
 
-// Instantiate stacks of char* values.
+// Instantiate Stacks of char* values.
+
+#include "SLStack.h"
+#include "SLStack.cc"
 
-compl#include <list>
-#include <stack>
-
-template class stack <list <char *> >;
+template class SLNode<char*>;
+template class SLList<char*>;
+template class Stack<char*>;
+template class SLStack<char*>;
 
 /*
 ;;; Local Variables: ***