sources:
M06_5.cpp (808 bytes)
MDate.cpp (1.8k)
MDate.h (956 bytes)
MHouseADT.cpp (6.3k)
MHouseADT.h (2.0k)
MRoom.cpp (1.5k)
MRoom.h (1.1k)
PrimitiveTypes.h (421 bytes)


website:
more info here
studies/bauelemente/Softwarebauelemente-CodeM6-5/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