Mercurial > hg > octave-thorsten
changeset 4213:f8f7fc582c62
[project @ 2002-12-04 04:19:15 by jwe]
author | jwe |
---|---|
date | Wed, 04 Dec 2002 04:19:15 +0000 |
parents | 8ad52ec4f374 |
children | b9317f3973ec |
files | src/TEMPLATE-INST/SLStack-i.cc src/TEMPLATE-INST/SLStack-ovl.cc src/TEMPLATE-INST/SLStack-pc.cc src/TEMPLATE-INST/SLStack-str.cc src/TEMPLATE-INST/SLStack-sym.cc src/TEMPLATE-INST/SLStack-tok.cc src/TEMPLATE-INST/SLStack-ue.cc src/TEMPLATE-INST/SLStack-ui.cc |
diffstat | 8 files changed, 0 insertions(+), 403 deletions(-) [+] |
line wrap: on
line diff
deleted file mode 100644 --- a/src/TEMPLATE-INST/SLStack-i.cc +++ /dev/null @@ -1,49 +0,0 @@ -/* - -Copyright (C) 1996, 1997 John W. Eaton - -This file is part of Octave. - -Octave is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation; either version 2, or (at your option) any -later version. - -Octave is distributed in the hope that it will be useful, but WITHOUT -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -for more details. - -You should have received a copy of the GNU General Public License -along with Octave; see the file COPYING. If not, write to the Free -Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -*/ - -// Instantiate Stacks of int values. - -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - -#include "SLList.h" -#include "SLList.cc" - -#include "Stack.h" -#include "Stack.cc" - -#include "SLStack.h" -#include "SLStack.cc" - -template class SLNode<int>; -template class SLList<int>; - -template class Stack<int>; - -template class SLStack<int>; - -/* -;;; Local Variables: *** -;;; mode: C++ *** -;;; End: *** -*/
deleted file mode 100644 --- a/src/TEMPLATE-INST/SLStack-ovl.cc +++ /dev/null @@ -1,51 +0,0 @@ -/* - -Copyright (C) 1996, 1997 John W. Eaton - -This file is part of Octave. - -Octave is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation; either version 2, or (at your option) any -later version. - -Octave is distributed in the hope that it will be useful, but WITHOUT -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -for more details. - -You should have received a copy of the GNU General Public License -along with Octave; see the file COPYING. If not, write to the Free -Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -*/ - -// Instantiate Stacks of string values. - -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - -#include "SLList.h" -#include "SLList.cc" - -#include "Stack.h" -#include "Stack.cc" - -#include "SLStack.h" -#include "SLStack.cc" - -#include "oct-obj.h" - -template class SLNode<octave_value_list>; -template class SLList<octave_value_list>; - -template class Stack<octave_value_list>; - -template class SLStack<octave_value_list>; - -/* -;;; Local Variables: *** -;;; mode: C++ *** -;;; End: *** -*/
deleted file mode 100644 --- a/src/TEMPLATE-INST/SLStack-pc.cc +++ /dev/null @@ -1,49 +0,0 @@ -/* - -Copyright (C) 1996, 1997 John W. Eaton - -This file is part of Octave. - -Octave is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation; either version 2, or (at your option) any -later version. - -Octave is distributed in the hope that it will be useful, but WITHOUT -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -for more details. - -You should have received a copy of the GNU General Public License -along with Octave; see the file COPYING. If not, write to the Free -Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -*/ - -// Instantiate Stacks of char* values. - -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - -#include "SLList.h" -#include "SLList.cc" - -#include "Stack.h" -#include "Stack.cc" - -#include "SLStack.h" -#include "SLStack.cc" - -template class SLNode<char*>; -template class SLList<char*>; - -template class Stack<char*>; - -template class SLStack<char*>; - -/* -;;; Local Variables: *** -;;; mode: C++ *** -;;; End: *** -*/
deleted file mode 100644 --- a/src/TEMPLATE-INST/SLStack-str.cc +++ /dev/null @@ -1,51 +0,0 @@ -/* - -Copyright (C) 1996, 1997 John W. Eaton - -This file is part of Octave. - -Octave is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation; either version 2, or (at your option) any -later version. - -Octave is distributed in the hope that it will be useful, but WITHOUT -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -for more details. - -You should have received a copy of the GNU General Public License -along with Octave; see the file COPYING. If not, write to the Free -Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -*/ - -// Instantiate Stacks of string values. - -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - -#include "SLList.h" -#include "SLList.cc" - -#include "Stack.h" -#include "Stack.cc" - -#include "SLStack.h" -#include "SLStack.cc" - -#include <string> - -template class SLNode<std::string>; -template class SLList<std::string>; - -template class Stack<std::string>; - -template class SLStack<std::string>; - -/* -;;; Local Variables: *** -;;; mode: C++ *** -;;; End: *** -*/
deleted file mode 100644 --- a/src/TEMPLATE-INST/SLStack-sym.cc +++ /dev/null @@ -1,52 +0,0 @@ -/* - -Copyright (C) 1996, 1997 John W. Eaton - -This file is part of Octave. - -Octave is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation; either version 2, or (at your option) any -later version. - -Octave is distributed in the hope that it will be useful, but WITHOUT -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -for more details. - -You should have received a copy of the GNU General Public License -along with Octave; see the file COPYING. If not, write to the Free -Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -*/ - -// Instantiate Stacks of symbol_def* values. - -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - -#include "SLList.h" -#include "SLList.cc" - -#include "Stack.h" -#include "Stack.cc" - -#include "SLStack.h" -#include "SLStack.cc" - -#include "oct-obj.h" -#include "symtab.h" - -template class SLNode<symbol_record::symbol_def *>; -template class SLList<symbol_record::symbol_def *>; - -template class Stack<symbol_record::symbol_def *>; - -template class SLStack<symbol_record::symbol_def *>; - -/* -;;; Local Variables: *** -;;; mode: C++ *** -;;; End: *** -*/
deleted file mode 100644 --- a/src/TEMPLATE-INST/SLStack-tok.cc +++ /dev/null @@ -1,51 +0,0 @@ -/* - -Copyright (C) 1996, 1997 John W. Eaton - -This file is part of Octave. - -Octave is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation; either version 2, or (at your option) any -later version. - -Octave is distributed in the hope that it will be useful, but WITHOUT -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -for more details. - -You should have received a copy of the GNU General Public License -along with Octave; see the file COPYING. If not, write to the Free -Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -*/ - -// Instantiate Stacks of token* values. - -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - -#include "SLList.h" -#include "SLList.cc" - -#include "Stack.h" -#include "Stack.cc" - -#include "SLStack.h" -#include "SLStack.cc" - -#include "token.h" - -template class SLNode<token *>; -template class SLList<token *>; - -template class Stack<token *>; - -template class SLStack<token *>; - -/* -;;; Local Variables: *** -;;; mode: C++ *** -;;; End: *** -*/
deleted file mode 100644 --- a/src/TEMPLATE-INST/SLStack-ue.cc +++ /dev/null @@ -1,51 +0,0 @@ -/* - -Copyright (C) 1996, 1997 John W. Eaton - -This file is part of Octave. - -Octave is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation; either version 2, or (at your option) any -later version. - -Octave is distributed in the hope that it will be useful, but WITHOUT -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -for more details. - -You should have received a copy of the GNU General Public License -along with Octave; see the file COPYING. If not, write to the Free -Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -*/ - -// Instantiate Stacks of unwind_elem values. - -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - -#include "SLList.h" -#include "SLList.cc" - -#include "Stack.h" -#include "Stack.cc" - -#include "SLStack.h" -#include "SLStack.cc" - -#include "unwind-prot.h" - -template class SLNode<unwind_elem>; -template class SLList<unwind_elem>; - -template class Stack<unwind_elem>; - -template class SLStack<unwind_elem>; - -/* -;;; Local Variables: *** -;;; mode: C++ *** -;;; End: *** -*/
deleted file mode 100644 --- a/src/TEMPLATE-INST/SLStack-ui.cc +++ /dev/null @@ -1,49 +0,0 @@ -/* - -Copyright (C) 1996, 1997 John W. Eaton - -This file is part of Octave. - -Octave is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation; either version 2, or (at your option) any -later version. - -Octave is distributed in the hope that it will be useful, but WITHOUT -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -for more details. - -You should have received a copy of the GNU General Public License -along with Octave; see the file COPYING. If not, write to the Free -Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -*/ - -// Instantiate Stacks of unsigned values. - -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif - -#include "SLList.h" -#include "SLList.cc" - -#include "Stack.h" -#include "Stack.cc" - -#include "SLStack.h" -#include "SLStack.cc" - -template class SLNode<unsigned>; -template class SLList<unsigned>; - -template class Stack<unsigned>; - -template class SLStack<unsigned>; - -/* -;;; Local Variables: *** -;;; mode: C++ *** -;;; End: *** -*/