sources:
M06_1.cpp (390 bytes)
MCashOffice.cpp (2.0k)
MCashOffice.h (1.4k)
MRoom.cpp (1.5k)
MRoom.h (1.1k)
PrimitiveTypes.h (421 bytes)


website:
more info here
studies/bauelemente/Softwarebauelemente-CodeM6-1/M06_1.cpp
download file

  1 ///////////////////////////////////////////////////////////
  2 // Softwarebauelemente I, Aufgabe M6.1
  3 //
  4 // author: Stephan Brumme
  5 // last changes: November 23, 2000
  6
  7
  8 // import cout to display some data
  9 #include <iostream>
 10 #include "MRoom.h"
 11 #include "MCashOffice.h"
 12
 13 // open std namespace
 14 using namespace std;
 15
 16
 17 void main()
 18 {
 19     // ... use the namespaces in some way ...
 20 }
 21