Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CASE Labor
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lab-docs
CASE Labor
Wiki
Magicdraw
klassenDiagramm
Changes
Page history
New page
Templates
Clone repository
Update klassenDiagramm
authored
6 years ago
by
Michael Guist
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
MagicDraw/klassenDiagramm.md
+23
-23
23 additions, 23 deletions
MagicDraw/klassenDiagramm.md
with
23 additions
and
23 deletions
MagicDraw/klassenDiagramm.md
View page @
d4f54136
...
...
@@ -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
This diff is collapsed.
Click to expand it.