![]() |
Rosetta Utilities
2014.35
|
The StringResourceStream is a wrapper class for a std::stringstream that can be used to construct a resource. Useful when reading the resource stream in to memory (e.g. from a database or from multiple files) before trying to construct the resource. More...
#include <StringResourceStream.hh>
Public Member Functions | |
StringResourceStream () | |
StringResourceStream (std::string const &contents) | |
template<class InputSource > | |
StringResourceStream (InputSource &in_stream) | |
Append a piece of data to the internal stringstream. More... | |
virtual | ~StringResourceStream () |
virtual void | fill (std::string const &contents) |
Construct the stringstream from the given input string. More... | |
virtual std::istream & | stream () |
Give non-const access to the internal stringstream so that it can be used to construct a resource. More... | |
![]() | |
virtual | ~ResourceStream () |
![]() | |
void | ctor () |
virtual | ~ReferenceCount () |
Destructor. More... | |
Size | ref_count () const |
Reference count. More... | |
Private Member Functions | |
StringResourceStream (StringResourceStream const &src) | |
This is private. The StringResourceStream shouldn't be copied. More... | |
Private Attributes | |
std::stringstream | stream_ |
Additional Inherited Members | |
![]() | |
typedef platform::Size | Size |
typedef platform::Size | size_type |
![]() | |
ReferenceCount () | |
Default constructor. More... | |
ReferenceCount (ReferenceCount const &) | |
Copy constructor. More... | |
ReferenceCount & | operator= (ReferenceCount const &) |
Copy assignment. More... | |
The StringResourceStream is a wrapper class for a std::stringstream that can be used to construct a resource. Useful when reading the resource stream in to memory (e.g. from a database or from multiple files) before trying to construct the resource.
basic::resource_manager::locator::StringResourceStream::StringResourceStream | ( | ) |
If you use this constructor be sure to set the string before accessing the stream
basic::resource_manager::locator::StringResourceStream::StringResourceStream | ( | std::string const & | contents | ) |
|
inline |
Append a piece of data to the internal stringstream.
References stream_.
|
private |
This is private. The StringResourceStream shouldn't be copied.
This is private. The StringResourceStream shouldn't be copied
|
virtual |
|
virtual |
Construct the stringstream from the given input string.
References stream_.
|
virtual |
Give non-const access to the internal stringstream so that it can be used to construct a resource.
Implements basic::resource_manager::ResourceStream.
References stream_.
|
private |
Referenced by fill(), stream(), and StringResourceStream().