Update klassenDiagramm authored by Michael Guist's avatar Michael Guist
......@@ -71,26 +71,26 @@ Die Klasse FB braucht einen Vector, der Pointer auf die Klasse Student enthält.
In Code umgesetzt ergeben sich folgende Strukturen:
// FB.h
#ifndef FB_H_H
#define FB_H_H
#include "Studenten.h"
class Studenten;
class FB
{
std::vector<Studenten *> pStudenten;
};
#endif
// Student.h
#ifndef STUDENT_H_H
#define STUDENT_H_H
#include "FB.h"
class FB;
class Studenten
{
FB* pFB;
};
#endif
\ No newline at end of file
// FB.h<p>
#ifndef FB_H_H<p>
#define FB_H_H<p>
#include "Student.h"<p>
class Student;<p>
<p>
class FB<p>
{<p>
std::vector<Studenten *> pStudenten;<p>
};<p>
#endif<p>
<p><p>
// Student.h<p>
#ifndef STUDENT_H_H<p>
#define STUDENT_H_H<p>
#include "FB.h"<p>
class FB;<p>
class Student<p>
{<p>
FB* pFB;<p>
};<p>
#endif<p>
<p>
\ No newline at end of file