• Main Page
  • Classes
  • Files
  • File List

Student.h

00001 
00002 // Praktikum Informatik 1
00003 // Versuch 4.1: Dynamische Datenstrukturen
00004 //
00005 // Datei:  Student.h
00006 // Inhalt: Studentenstruktur mit Merkmalen eines Studenten
00008 
00009 #ifndef STUDENT_H_
00010 #define STUDENT_H_
00011 
00012 
00013 struct Student{
00014         string name;
00015         int matNr;
00016         string gebDatum;
00017         string adresse;
00018 };
00019 
00020 
00021 #endif /*STUDENT_H_*/

Generated on Wed Apr 20 2011 23:44:35 for Stack by  doxygen 1.7.1