Mercurial > hg > octave-avbm
annotate libinterp/interp-core/oct-prcstrm.cc @ 16609:1eeeb2599870
fix style of matching braces in octave lexer
* lexer-octave-gui.cc/.h (brace::Style): new function returning brace style
* lexer-octave-gui.cc(defaultFont): fix shadow warnings during compilation
author | Torsten <ttl@justmail.de> |
---|---|
date | Fri, 03 May 2013 20:59:46 +0200 |
parents | 2fc554ffbc28 |
children |
rev | line source |
---|---|
2081 | 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 |
2081 | 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. | |
2081 | 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/>. | |
2081 | 20 |
21 */ | |
22 | |
23 #ifdef HAVE_CONFIG_H | |
24 #include <config.h> | |
25 #endif | |
26 | |
27 #include <cstdio> | |
28 | |
29 #include "oct-prcstrm.h" | |
6726 | 30 #include "sysdep.h" |
3951 | 31 |
3340 | 32 octave_stream |
3544 | 33 octave_iprocstream::create (const std::string& n, std::ios::openmode arg_md, |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
34 oct_mach_info::float_format ff) |
3340 | 35 { |
4587 | 36 return octave_stream (new octave_iprocstream (n, arg_md, ff)); |
3340 | 37 } |
38 | |
3523 | 39 octave_iprocstream::octave_iprocstream (const std::string& n, |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
40 std::ios::openmode arg_md, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
41 oct_mach_info::float_format ff) |
6726 | 42 : octave_stdiostream (n, octave_popen (n.c_str (), "r"), |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
43 arg_md, ff, octave_pclose) |
2081 | 44 { |
45 } | |
46 | |
47 octave_iprocstream::~octave_iprocstream (void) | |
48 { | |
3652 | 49 do_close (); |
50 } | |
51 | |
3340 | 52 octave_stream |
3544 | 53 octave_oprocstream::create (const std::string& n, std::ios::openmode arg_md, |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
54 oct_mach_info::float_format ff) |
3340 | 55 { |
4587 | 56 return octave_stream (new octave_oprocstream (n, arg_md, ff)); |
3340 | 57 } |
58 | |
3523 | 59 octave_oprocstream::octave_oprocstream (const std::string& n, |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
60 std::ios::openmode arg_md, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
61 oct_mach_info::float_format ff) |
6726 | 62 : octave_stdiostream (n, octave_popen (n.c_str (), "w"), |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
63 arg_md, ff, octave_pclose) |
2081 | 64 { |
65 } | |
66 | |
67 octave_oprocstream::~octave_oprocstream (void) | |
68 { | |
3652 | 69 do_close (); |
70 } |