Mercurial > hg > octave-lyh
comparison src/procstream.h @ 14861:f7afecdd87ef
maint: Use Octave coding conventions for cuddling parentheses in src/ directory
* bitfcns.cc, comment-list.cc, data.cc, defun.cc, error.cc, gl-render.cc,
graphics.cc, graphics.in.h, load-path.cc, load-path.h, load-save.cc,
ls-hdf5.cc, ls-mat4.cc, ls-mat5.cc, ls-oct-ascii.cc, mappers.cc, mex.cc,
oct-map.cc, oct-obj.cc, ov-base-int.cc, ov-base-mat.h, ov-base-sparse.cc,
ov-bool-mat.cc, ov-bool-sparse.cc, ov-cell.cc, ov-class.cc, ov-complex.cc,
ov-cx-mat.cc, ov-cx-sparse.cc, ov-fcn-handle.cc, ov-flt-cx-mat.cc,
ov-flt-re-mat.cc, ov-re-mat.cc, ov-re-sparse.cc, ov-scalar.cc, ov-str-mat.cc,
ov-struct.cc, ov-usr-fcn.cc, ov.cc, pr-output.cc, procstream.h, sighandlers.cc,
sparse-xdiv.cc, sparse-xpow.cc, sparse.cc, symtab.cc, syscalls.cc, sysdep.cc,
txt-eng-ft.cc, variables.cc, zfstream.cc, zfstream.h: Use Octave coding
conventions for cuddling parentheses.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Sat, 14 Jul 2012 06:22:56 -0700 |
parents | 72c96de7a403 |
children |
comparison
equal
deleted
inserted
replaced
14860:e027f98403c3 | 14861:f7afecdd87ef |
---|---|
106 public: | 106 public: |
107 | 107 |
108 oprocstream (void) : std::ostream (0), procstreambase () { } | 108 oprocstream (void) : std::ostream (0), procstreambase () { } |
109 | 109 |
110 oprocstream (const std::string& name, int mode = std::ios::out) | 110 oprocstream (const std::string& name, int mode = std::ios::out) |
111 : std::ostream (0), procstreambase(name, mode) { } | 111 : std::ostream (0), procstreambase (name, mode) { } |
112 | 112 |
113 oprocstream (const char *name, int mode = std::ios::out) | 113 oprocstream (const char *name, int mode = std::ios::out) |
114 : std::ostream (0), procstreambase(name, mode) { } | 114 : std::ostream (0), procstreambase (name, mode) { } |
115 | 115 |
116 ~oprocstream (void) { } | 116 ~oprocstream (void) { } |
117 | 117 |
118 void open (const std::string& name, int mode = std::ios::out) | 118 void open (const std::string& name, int mode = std::ios::out) |
119 { procstreambase::open (name, mode); } | 119 { procstreambase::open (name, mode); } |