diff options
Diffstat (limited to 'library/SSRS/Object/RenderStream.php')
-rwxr-xr-x | library/SSRS/Object/RenderStream.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/library/SSRS/Object/RenderStream.php b/library/SSRS/Object/RenderStream.php new file mode 100755 index 0000000..a1027f8 --- /dev/null +++ b/library/SSRS/Object/RenderStream.php @@ -0,0 +1,22 @@ +<?php + +/** + * SSRS_Object_RenderStream + * + * @author arron + */ +class SSRS_Object_RenderStream extends SSRS_Object_Abstract { + + public $Result; + public $MimeType; + + public function __construct(stdClass $stream) { + $this->Result = $stream->Result; + $this->MimeType = $stream->MimeType; + } + + public function __toString() { + return $this->Result; + } + +}
\ No newline at end of file |