osgEarth 2.1.1
Public Member Functions | Public Attributes

osgEarth::StreamObject Struct Reference

List of all members.

Public Member Functions

 StreamObject (std::ostream *stream)
void write (const char *ptr, size_t realsize)

Public Attributes

std::ostream * _stream
std::string _resultMimeType

Detailed Description

Definition at line 81 of file HTTPClient.cpp.


Constructor & Destructor Documentation

osgEarth::StreamObject::StreamObject ( std::ostream *  stream) [inline]

Definition at line 83 of file HTTPClient.cpp.

: _stream(stream) { }

Member Function Documentation

void osgEarth::StreamObject::write ( const char *  ptr,
size_t  realsize 
) [inline]

Definition at line 85 of file HTTPClient.cpp.

        {
            if (_stream) _stream->write(ptr, realsize);
        }

Here is the caller graph for this function:


Member Data Documentation

Definition at line 91 of file HTTPClient.cpp.

Definition at line 90 of file HTTPClient.cpp.


The documentation for this struct was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines