X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=application%2Fship-simu%2Fmain%2Fconstructions%2Fterminals%2Fclass_Terminal.php;fp=application%2Fship-simu%2Fmain%2Fconstructions%2Fterminals%2Fclass_Terminal.php;h=ca61501979235fbdb65b5c26a365f47689fb6198;hp=0000000000000000000000000000000000000000;hb=ff66822b5fb6a92f5dc8af55290ecb89ec7f1aaf;hpb=d3dc161881e77cb39100a7d9220f520a5375bb26 diff --git a/application/ship-simu/main/constructions/terminals/class_Terminal.php b/application/ship-simu/main/constructions/terminals/class_Terminal.php new file mode 100644 index 0000000..ca61501 --- /dev/null +++ b/application/ship-simu/main/constructions/terminals/class_Terminal.php @@ -0,0 +1,46 @@ +getDebugInstance()->output(sprintf("[%s:%d] Konstruktor erreicht.
\n", + __CLASS__, + __LINE__ + )); + } + + // Eltern-Konstruktor aufrufen + parent::constructor(__CLASS__); + + // Beschreibung setzen + $this->setPartDescr("Anlegebrücke"); + + // Unique-ID erzeugen + $this->createUniqueID(); + } + + /** + * Stub! + */ + public function saveObjectToDatabase () { + $this->getDebugInstance()->output(sprintf("[%s:] Stub %s erreicht.", + $this->__toString(), + __FUNCTION__ + )); + } + + /** + * Limits this object with an ObjectLimits instance + */ + public function limitObject (ObjectLimits $limitInstance) { + ApplicationEntryPoint::app_die("".__METHOD__." reached! Stub!"); + } +} + +// [EOF] +?>