diff options
Diffstat (limited to 'library/SSRS/Object/Report.php')
-rwxr-xr-x | library/SSRS/Object/Report.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/library/SSRS/Object/Report.php b/library/SSRS/Object/Report.php new file mode 100755 index 0000000..6733e28 --- /dev/null +++ b/library/SSRS/Object/Report.php @@ -0,0 +1,14 @@ +<?php + +/** + * Description of ExecutionParameters + * + * @author andrew + */ +class SSRS_Object_Report extends SSRS_Object_Abstract{ + + public function setExecutionInfo(stdClass $info){ + $this->data['executionInfo'] = new SSRS_Object_ExecutionInfo($info); + } + +} |