oct-strstrm.cc

Go to the documentation of this file.
00001 /*
00002 
00003 Copyright (C) 1996-2012 John W. Eaton
00004 
00005 This file is part of Octave.
00006 
00007 Octave is free software; you can redistribute it and/or modify it
00008 under the terms of the GNU General Public License as published by the
00009 Free Software Foundation; either version 3 of the License, or (at your
00010 option) any later version.
00011 
00012 Octave is distributed in the hope that it will be useful, but WITHOUT
00013 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00014 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
00015 for more details.
00016 
00017 You should have received a copy of the GNU General Public License
00018 along with Octave; see the file COPYING.  If not, see
00019 <http://www.gnu.org/licenses/>.
00020 
00021 */
00022 
00023 #ifdef HAVE_CONFIG_H
00024 #include <config.h>
00025 #endif
00026 
00027 #include "oct-strstrm.h"
00028 
00029 // Position a stream at OFFSET relative to ORIGIN.
00030 
00031 int
00032 octave_base_strstream::seek (long, int)
00033 {
00034   error ("fseek: invalid operation");
00035   return -1;
00036 }
00037 
00038 // Return current stream position.
00039 
00040 long
00041 octave_base_strstream::tell (void)
00042 {
00043   error ("ftell: invalid operation");
00044   return -1;
00045 }
00046 
00047 octave_stream
00048 octave_istrstream::create (const char *data, std::ios::openmode arg_md,
00049                            oct_mach_info::float_format flt_fmt)
00050 {
00051   return octave_stream (new octave_istrstream (data, arg_md, flt_fmt));
00052 }
00053 
00054 octave_stream
00055 octave_istrstream::create (const std::string& data, std::ios::openmode arg_md,
00056                            oct_mach_info::float_format flt_fmt)
00057 {
00058   return octave_stream (new octave_istrstream (data, arg_md, flt_fmt));
00059 }
00060 
00061 octave_stream
00062 octave_ostrstream::create (std::ios::openmode arg_md,
00063                            oct_mach_info::float_format flt_fmt)
00064 {
00065   return octave_stream (new octave_ostrstream (arg_md, flt_fmt));
00066 }
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines