From: Roland Häder Date: Fri, 5 Feb 2010 00:40:41 +0000 (+0000) Subject: Compressor instances can now be set/get X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=99918e8d052600e168a8945b015c27e3f12a7165 Compressor instances can now be set/get --- diff --git a/inc/classes/main/class_BaseFrameworkSystem.php b/inc/classes/main/class_BaseFrameworkSystem.php index ecca0501..9ef0a809 100644 --- a/inc/classes/main/class_BaseFrameworkSystem.php +++ b/inc/classes/main/class_BaseFrameworkSystem.php @@ -103,6 +103,11 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { */ private $stackerInstance = null; + /** + * A Compressor instance + */ + private $compressorInstance = null; + /** * The real class name */ @@ -1296,6 +1301,25 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { public final function getStackerInstance () { return $this->stackerInstance; } + + /** + * Setter for compressor instanxe + * + * @param $compressorInstance An instance of an compressor + * @return void + */ + public final function setCompressorInstance (Compressor $compressorInstance) { + $this->compressorInstance = $compressorInstance; + } + + /** + * Getter for compressor instanxe + * + * @return $compressorInstance An instance of an compressor + */ + public final function getCompressorInstance () { + return $this->compressorInstance; + } } // [EOF]