/**********************************************************************************/ /* Definitionsmodul */ /**********************************************************************************/ /* * generiert mit Innovator Version 8.1.04 * * erstellt am: 05.05.2005 14:01:15 * Repository : swtd29 * Modell : swt * Benutzer : swtd29 * File : /users/swtd29/code/konto.cpp * */ // ino.module.konto.417.includes #include "konto.hpp" // ino.end // ino.method.getKontostand.421.definition float systemModel::AnalyseModell::Konto::getKontostand() // ino.end // ino.method.getKontostand.421.body { return Kontostand; } // ino.end // ino.method.~Konto.403.definition systemModel::AnalyseModell::Konto::~Konto(void) // ino.end // ino.method.~Konto.403.body { } // ino.end // ino.method.Konto.400.definition systemModel::AnalyseModell::Konto::Konto(void) // ino.end // ino.method.Konto.400.body { } // ino.end // ino.method.geldEinzahlen.377.definition void systemModel::AnalyseModell::Konto::geldEinzahlen(float betrag) // ino.end // ino.method.geldEinzahlen.377.body { Kontostand=Kontostand+betrag; } // ino.end // ino.method.geldAbheben.379.definition void systemModel::AnalyseModell::Konto::geldAbheben(float betrag) // ino.end // ino.method.geldAbheben.379.body { Kontostand=Kontostand-betrag; } // ino.end