#include <ossim/base/ossimIosFwd.h>
#include <ossim/base/ossimConstants.h>
#include <ossim/base/ossimStreamBase.h>
#include <ossim/base/ossimString.h>
#include <istream>
#include <iostream>
#include <ostream>
#include <fstream>
#include <sstream>
#include <memory>
Go to the source code of this file.
◆ operator<<() [1/4]
Definition at line 455 of file ossimIoStream.cpp.
460 while(!done&&!in.fail())
463 if(in.gcount() < 1024)
469 out.write(buf, in.gcount());
◆ operator<<() [2/4]
Definition at line 474 of file ossimIoStream.cpp.
479 while(!done&&!in.fail())
482 if(in.gcount() < 1024)
488 out.write(buf, in.gcount());
◆ operator<<() [3/4]
Definition at line 493 of file ossimIoStream.cpp.
498 while(!done&&!in.fail())
501 if(in.gcount() < 1024)
507 out.write(buf, in.gcount());
◆ operator<<() [4/4]
Definition at line 514 of file ossimIoStream.cpp.
519 while(!done&&!in.fail())
522 if(in.gcount() < 1024)
528 out.write(buf, in.gcount());
◆ operator>>() [1/4]
Definition at line 375 of file ossimIoStream.cpp.
380 while(!done&&!in.fail())
383 if(in.gcount() < 1024)
389 out.write(buf, in.gcount());
◆ operator>>() [2/4]
Definition at line 394 of file ossimIoStream.cpp.
399 while(!done&&!in.fail())
402 if(in.gcount() < 1024)
408 out.write(buf, in.gcount());
◆ operator>>() [3/4]
Definition at line 415 of file ossimIoStream.cpp.
420 while(!done&&!in.fail())
423 if(in.gcount() < 1024)
429 out.write(buf, in.gcount());
◆ operator>>() [4/4]
Definition at line 434 of file ossimIoStream.cpp.
439 while(!done&&!in.fail())
442 if(in.gcount() < 1024)
448 out.write(buf, in.gcount());