comparison src/oct-fstrm.cc @ 10315:57a59eae83cc

untabify src C++ source files
author John W. Eaton <jwe@octave.org>
date Thu, 11 Feb 2010 12:41:46 -0500
parents cd96d29c5efa
children 479cc8a0a846
comparison
equal deleted inserted replaced
10314:07ebe522dac2 10315:57a59eae83cc
31 #include "error.h" 31 #include "error.h"
32 #include "oct-fstrm.h" 32 #include "oct-fstrm.h"
33 33
34 octave_stream 34 octave_stream
35 octave_fstream::create (const std::string& nm_arg, std::ios::openmode arg_md, 35 octave_fstream::create (const std::string& nm_arg, std::ios::openmode arg_md,
36 oct_mach_info::float_format ff) 36 oct_mach_info::float_format ff)
37 { 37 {
38 return octave_stream (new octave_fstream (nm_arg, arg_md, ff)); 38 return octave_stream (new octave_fstream (nm_arg, arg_md, ff));
39 } 39 }
40 40
41 octave_fstream::octave_fstream (const std::string& nm_arg, 41 octave_fstream::octave_fstream (const std::string& nm_arg,
42 std::ios::openmode arg_md, 42 std::ios::openmode arg_md,
43 oct_mach_info::float_format ff) 43 oct_mach_info::float_format ff)
44 : octave_base_stream (arg_md, ff), nm (nm_arg) 44 : octave_base_stream (arg_md, ff), nm (nm_arg)
45 { 45 {
46 46
47 #if CXX_ISO_COMPLIANT_LIBRARY 47 #if CXX_ISO_COMPLIANT_LIBRARY
48 48