annotate src/oct.h @ 7961:a5d1e27ee1f4 ss-3-1-51

3.1.51 snapshot
author John W. Eaton <jwe@octave.org>
date Tue, 22 Jul 2008 11:40:48 -0400
parents a1dbe9d80eee
children 25bc2d31e1bf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2241
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
1 /*
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
2
7017
a1dbe9d80eee [project @ 2007-10-12 21:27:11 by jwe]
jwe
parents: 7016
diff changeset
3 Copyright (C) 1996, 1997, 2002, 2004, 2005, 2007 John W. Eaton
2241
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
4
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
5 This file is part of Octave.
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
6
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5307
diff changeset
9 Free Software Foundation; either version 3 of the License, or (at your
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5307
diff changeset
10 option) any later version.
2241
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
11
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
12 Octave is distributed in the hope that it will be useful, but WITHOUT
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
15 for more details.
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
16
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5307
diff changeset
18 along with Octave; see the file COPYING. If not, see
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5307
diff changeset
19 <http://www.gnu.org/licenses/>.
2241
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
20
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
21 */
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
22
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
23 #if !defined (octave_oct_h)
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
24 #define octave_oct_h 1
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
25
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
26 // Things that are often included to create .oct files.
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
27
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
28 // config.h needs to be first because it includes #defines that can */
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
29 // affect other header files.
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
30
5164
57077d0ddc8e [project @ 2005-02-25 19:55:24 by jwe]
jwe
parents: 4210
diff changeset
31 #include "config.h"
2241
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
32
5164
57077d0ddc8e [project @ 2005-02-25 19:55:24 by jwe]
jwe
parents: 4210
diff changeset
33 #include "Matrix.h"
4210
b6e652bf4e5f [project @ 2002-12-04 00:40:13 by jwe]
jwe
parents: 2911
diff changeset
34
5164
57077d0ddc8e [project @ 2005-02-25 19:55:24 by jwe]
jwe
parents: 4210
diff changeset
35 #include "defun-dld.h"
57077d0ddc8e [project @ 2005-02-25 19:55:24 by jwe]
jwe
parents: 4210
diff changeset
36 #include "error.h"
57077d0ddc8e [project @ 2005-02-25 19:55:24 by jwe]
jwe
parents: 4210
diff changeset
37 #include "gripes.h"
57077d0ddc8e [project @ 2005-02-25 19:55:24 by jwe]
jwe
parents: 4210
diff changeset
38 #include "help.h"
57077d0ddc8e [project @ 2005-02-25 19:55:24 by jwe]
jwe
parents: 4210
diff changeset
39 #include "oct-obj.h"
57077d0ddc8e [project @ 2005-02-25 19:55:24 by jwe]
jwe
parents: 4210
diff changeset
40 #include "pager.h"
57077d0ddc8e [project @ 2005-02-25 19:55:24 by jwe]
jwe
parents: 4210
diff changeset
41 #include "utils.h"
57077d0ddc8e [project @ 2005-02-25 19:55:24 by jwe]
jwe
parents: 4210
diff changeset
42 #include "variables.h"
2241
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
43
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
44 #endif
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
45
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
46 /*
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
47 ;;; Local Variables: ***
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
48 ;;; mode: C++ ***
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
49 ;;; End: ***
d37f86731806 [project @ 1996-05-22 04:04:13 by jwe]
jwe
parents:
diff changeset
50 */