Main Page   Namespace List   Class Hierarchy   Compound List   File List   Compound Members   File Members  

Konto.cpp

Go to the documentation of this file.
00001 #include "Konto.h"
00002 #include <iostream>
00003 
00004 Konto::Konto(const string& name, unsigned long k_nr, double k_stand){
00005     this->name = name;
00006     this->k_nr = k_nr;
00007     this->k_stand = k_stand;
00008 }
00009 
00010 void Konto::display(){
00011     cout << "Konto " << name << " " << k_nr << " " << k_stand << endl;
00012 }

Generated on Sat Jul 19 18:19:54 2003 for Exercise Framework by doxygen1.2.18