/////////////////////////////////////////////////////////// // Softwarebauelemente I, Aufgabe M6.1 // // author: Stephan Brumme // last changes: November 23, 2000 #ifndef __PRIMITIVETYPES_H__ #define __PRIMITIVETYPES_H__ // define the basic types // names are closely related to their Pascal equivalents typedef int Ordinal; typedef bool Boolean; typedef float Real; typedef char* String; #endif