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 Thu Jul 3 19:12:45 2008 for Exercise Framework by  doxygen 1.5.1