X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fclasses%2Fmain%2Fclass_BaseFrameworkSystem.php;h=10b67239db4697fbe098c0e904462f7f92241f7f;hb=c3106ae537f1d46274988826a070632a439e2c49;hp=0b14dcbb66f1ab787f54b2bc69189a6487c96ec2;hpb=7f7a73a23398748d13dac8fbf289702e635ceb05;p=core.git diff --git a/inc/classes/main/class_BaseFrameworkSystem.php b/inc/classes/main/class_BaseFrameworkSystem.php index 0b14dcbb..10b67239 100644 --- a/inc/classes/main/class_BaseFrameworkSystem.php +++ b/inc/classes/main/class_BaseFrameworkSystem.php @@ -98,6 +98,11 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { */ private $imageInstance = null; + /** + * Instance of the stacker + */ + private $stackerInstance = null; + /** * The real class name */ @@ -1253,6 +1258,25 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { public final function getImageInstance () { return $this->imageInstance; } + + /** + * Setter for stacker instanxe + * + * @param $stackerInstance An instance of an stacker + * @return void + */ + public final function setStackerInstance (Stackable $stackerInstance) { + $this->stackerInstance = $stackerInstance; + } + + /** + * Getter for stacker instanxe + * + * @return $stackerInstance An instance of an stacker + */ + public final function getStackerInstance () { + return $this->stackerInstance; + } } // [EOF]