sources:
CashOffice.cpp (2.1k)
CashOffice.h (1.4k)
O1_2.cpp (985 bytes)
PrimitiveTypes.h (421 bytes)
Room.cpp (1.8k)
Room.h (1.4k)


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