comparison libinterp/corefcn/c-file-ptr-stream.cc @ 29991:3988112c7116

move i/o stream classes inside octave namespace * c-file-ptr-stream.h, c-file-ptr-stream.cc, file-io.cc, oct-fstrm.cc, oct-fstrm.h, oct-iostrm.cc, oct-iostrm.h, oct-prcstrm.cc, oct-prcstrm.h, oct-procbuf.cc, oct-procbuf.h, oct-stdstrm.h, oct-stream.cc, oct-strstrm.cc, oct-strstrm.h, procstream.cc, procstream.h: Move classes inside octave namespace. Change all uses. Provide deprecated typedefs to preserve old names where possible.
author John W. Eaton <jwe@octave.org>
date Tue, 17 Aug 2021 11:17:36 -0400
parents 0a5b15007766
children 1cf04058fea6
comparison
equal deleted inserted replaced
29990:b839c36fd106 29991:3988112c7116
31 31
32 #include "filepos-wrappers.h" 32 #include "filepos-wrappers.h"
33 33
34 #include "c-file-ptr-stream.h" 34 #include "c-file-ptr-stream.h"
35 35
36 OCTAVE_NAMESPACE_BEGIN
37
36 #if ! defined (SEEK_SET) 38 #if ! defined (SEEK_SET)
37 # define SEEK_SET 0 39 # define SEEK_SET 0
38 #endif 40 #endif
39 41
40 #if ! defined (SEEK_CUR) 42 #if ! defined (SEEK_CUR)
314 } 316 }
315 317
316 return retval; 318 return retval;
317 } 319 }
318 320
319 #endif 321 OCTAVE_NAMESPACE_END
322
323 #endif