sources:
M06_2.cpp (391 bytes)
MDate.cpp (1.8k)
MDate.h (956 bytes)
MHouse.cpp (4.9k)
MHouse.h (1.9k)
MRoom.cpp (1.5k)
MRoom.h (1.1k)
PrimitiveTypes.h (421 bytes)


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