Mercurial > hg > octave-nkf
annotate liboctave/lo-sysdep.h @ 15013:c753ee228708
acinclude.m4: generate gnuplot warning message correctly (fixing bug from revision 8a84849ad986)
author | Carnë Draug <carandraug+dev@gmail.com> |
---|---|
date | Wed, 25 Jul 2012 16:48:10 +0100 |
parents | 583d3d6f6fde |
children |
rev | line source |
---|---|
2926 | 1 /* |
2 | |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
3 Copyright (C) 1996-2012 John W. Eaton |
2926 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
2926 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
2926 | 20 |
21 */ | |
22 | |
23 #if !defined (octave_liboctave_sysdep_h) | |
24 #define octave_liboctave_sysdep_h 1 | |
25 | |
26 #include <string> | |
27 | |
28 #include "lo-ieee.h" | |
6321 | 29 class string_vector; |
2926 | 30 |
3504 | 31 extern std::string octave_getcwd (void); |
2926 | 32 |
3635 | 33 extern int octave_chdir (const std::string&); |
2926 | 34 |
6321 | 35 #if defined (__WIN32__) && ! defined (__CYGWIN__) |
36 extern pid_t octave_popen2 (const std::string&, const string_vector&, | |
37 bool, int *, std::string&); | |
38 #endif | |
39 | |
6123 | 40 #endif |