/**********************************************************************************/ /* Deklarationsmodul */ /**********************************************************************************/ /* * generiert mit Innovator Version 8.1.04 * * erstellt am: 01.05.2005 14:31:27 * Repository : swtd29 * Modell : swtd29 * Benutzer : ADMIN * File : /tmp/src/konto.hpp * */ // ino.module.konto.510.ifndef #ifndef _KONTO_HPP_510 #define _KONTO_HPP_510 // ino.end namespace analysis_system { // ino.class.Konto.464.declaration class Konto // ino.end // ino.class.Konto.464.body { // ino.attribute.Kontostand.466.declaration private: float kontostand; // ino.end // ino.attribute.Kontonummer.468.declaration private: float kontonummer; // ino.end // ino.method.Konto.499.declaration public: Konto(void); // ino.end // ino.method.~Konto.496.declaration public: virtual ~Konto(void); // ino.end // ino.method.geldEinzahlen.470.declaration public: virtual void geldEinzahlen(float betrag); // ino.end // ino.method.geldAbheben.472.declaration public: virtual void geldAbheben(float betrag); // ino.end public: virtual float getKontostand(); }; // ino.end }; // namespace analysis system #if !defined(NO_IMPLICIT_NAMESPACE_USE) using namespace analysis_system; #endif // ino.module.konto.510.endif #endif // ino.end