sources:
M07_1.cpp (302 bytes)
MCashOffice.cpp (2.0k)
MCashOffice.h (1.4k)
MRoom.cpp (4.9k)
MRoom.h (1.1k)
PrimitiveTypes.h (421 bytes)


website:
more info here
studies/bauelemente/Softwarebauelemente-CodeM7-1/PrimitiveTypes.h
download file

  1 ///////////////////////////////////////////////////////////
  2 // Softwarebauelemente I, Aufgabe M6.1
  3 //
  4 // author: Stephan Brumme
  5 // last changes: November 23, 2000
  6
  7 #ifndef __PRIMITIVETYPES_H__
  8 #define __PRIMITIVETYPES_H__
  9
 10 // define the basic types
 11 // names are closely related to their Pascal equivalents
 12
 13 typedef int   Ordinal;
 14 typedef bool  Boolean;
 15 typedef float Real;
 16 typedef char* String;
 17
 18 #endif
 19