annotate src/oct-tilde.h @ 2554:f7e3d23f0a8f

[project @ 1996-11-21 01:41:57 by jwe]
author jwe
date Thu, 21 Nov 1996 01:43:06 +0000
parents c7f5599eb177
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1749
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
1 // oct-tilde.h -*- C++ -*-
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
2 /*
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
3
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
4 Copyright (C) 1996 John W. Eaton
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
5
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
6 This file is part of Octave.
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
7
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
8 Octave is free software; you can redistribute it and/or modify it
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
9 under the terms of the GNU General Public License as published by the
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
10 Free Software Foundation; either version 2, or (at your option) any
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
11 later version.
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
12
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
13 Octave is distributed in the hope that it will be useful, but WITHOUT
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
16 for more details.
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
17
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
19 along with Octave; see the file COPYING. If not, write to the Free
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
21
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
22 */
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
23
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
24 #if !defined (octave_octave_tilde_h)
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
25 #define octave_octave_tilde_h 1
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
26
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
27 #include <string>
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
28
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
29 extern string oct_tilde_expand (const string&);
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
30
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
31 #endif
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
32
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
33 /*
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
34 ;;; Local Variables: ***
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
35 ;;; mode: C++ ***
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
36 ;;; page-delimiter: "^/\\*" ***
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
37 ;;; End: ***
c7f5599eb177 [project @ 1996-01-13 09:31:07 by jwe]
jwe
parents:
diff changeset
38 */