00001
00010 #include <string>
00011 using namespace std;
00012
00013 #ifndef STUDENT_H_
00014 #define STUDENT_H_
00015
00016 struct Student
00017 {
00018 string name;
00019 int matNr;
00020 string gebDatum;
00021 string adresse;
00022 };
00023
00024 #endif