diff 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
line wrap: on
line diff
--- a/libinterp/corefcn/c-file-ptr-stream.cc	Mon Aug 16 22:28:30 2021 -0400
+++ b/libinterp/corefcn/c-file-ptr-stream.cc	Tue Aug 17 11:17:36 2021 -0400
@@ -33,6 +33,8 @@
 
 #include "c-file-ptr-stream.h"
 
+OCTAVE_NAMESPACE_BEGIN
+
 #if ! defined (SEEK_SET)
 #  define SEEK_SET 0
 #endif
@@ -316,4 +318,6 @@
   return retval;
 }
 
+OCTAVE_NAMESPACE_END
+
 #endif