A lightweight object that can create a stream to read some kind of resource. More...
Inherited by FileInputSource.
Public Member Functions | |
| InputSource () noexcept | |
| virtual | ~InputSource () |
| Destructor. | |
| virtual InputStream * | createInputStream ()=0 |
| Returns a new InputStream to read this item. | |
| virtual InputStream * | createInputStreamFor (const String &relatedItemPath)=0 |
| Returns a new InputStream to read an item, relative. | |
| virtual int64 | hashCode () const =0 |
| Returns a hash code that uniquely represents this item. | |
A lightweight object that can create a stream to read some kind of resource.
This may be used to refer to a file, or some other kind of source, allowing a caller to create an input stream that can read from it when required.
| virtual InputSource::~InputSource | ( | ) | [virtual] |
Destructor.
| virtual InputStream* InputSource::createInputStream | ( | ) | [pure virtual] |
Returns a new InputStream to read this item.
Implemented in FileInputSource.
| virtual InputStream* InputSource::createInputStreamFor | ( | const String & | relatedItemPath | ) | [pure virtual] |
Returns a new InputStream to read an item, relative.
| relatedItemPath | the relative pathname of the resource that is required |
Implemented in FileInputSource.
| virtual int64 InputSource::hashCode | ( | ) | const [pure virtual] |
Returns a hash code that uniquely represents this item.
Implemented in FileInputSource.