From 99918e8d052600e168a8945b015c27e3f12a7165 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Fri, 5 Feb 2010 00:40:41 +0000 Subject: [PATCH] Compressor instances can now be set/get --- .../main/class_BaseFrameworkSystem.php | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) 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] -- 2.39.5