diff --git a/Aufgabenblock_2/Aufgabenblock_2.vcxproj b/Aufgabenblock_2/Aufgabenblock_2.vcxproj
new file mode 100644
index 0000000..652d6e5
--- /dev/null
+++ b/Aufgabenblock_2/Aufgabenblock_2.vcxproj
@@ -0,0 +1,115 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {0A0AFD4E-9BD5-4ACD-8FE4-F00B40EDAE24}
+ Win32Proj
+ Aufgabenblock_2
+
+
+
+ Application
+ true
+ Unicode
+
+
+ Application
+ false
+ true
+ Unicode
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+
+
+ false
+
+
+
+
+
+ Level3
+ Disabled
+ WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)
+
+
+ Console
+ true
+
+
+
+
+ Level3
+
+
+ MaxSpeed
+ true
+ true
+ WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
+
+
+ Console
+ true
+ true
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Aufgabenblock_2/Aufgabenblock_2.vcxproj.filters b/Aufgabenblock_2/Aufgabenblock_2.vcxproj.filters
new file mode 100644
index 0000000..74a3c89
--- /dev/null
+++ b/Aufgabenblock_2/Aufgabenblock_2.vcxproj.filters
@@ -0,0 +1,105 @@
+
+
+
+
+ {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
+ cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
+
+
+ {93995380-89BD-4b04-88EB-625FBE52EBFB}
+ h;hpp;hxx;hm;inl;inc;xsd
+
+
+ {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
+ rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
+
+
+
+
+ Quelldateien
+
+
+ Quelldateien
+
+
+ Quelldateien
+
+
+ Quelldateien
+
+
+ Quelldateien
+
+
+ Quelldateien
+
+
+ Quelldateien
+
+
+ Quelldateien
+
+
+ Quelldateien
+
+
+ Quelldateien
+
+
+ Quelldateien
+
+
+ Quelldateien
+
+
+
+
+ Headerdateien
+
+
+ Headerdateien
+
+
+ Headerdateien
+
+
+ Headerdateien
+
+
+ Headerdateien
+
+
+ Headerdateien
+
+
+ Headerdateien
+
+
+ Headerdateien
+
+
+ Headerdateien
+
+
+ Headerdateien
+
+
+ Headerdateien
+
+
+ Headerdateien
+
+
+ Headerdateien
+
+
+ Headerdateien
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Aufgabenblock_2/Aufgabenblock_2.vcxproj.user b/Aufgabenblock_2/Aufgabenblock_2.vcxproj.user
new file mode 100644
index 0000000..695b5c7
--- /dev/null
+++ b/Aufgabenblock_2/Aufgabenblock_2.vcxproj.user
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/Aufgabenblock_2/LazyAktion.h b/Aufgabenblock_2/LazyAktion.h
index 1bf954f..bcaaf6f 100644
--- a/Aufgabenblock_2/LazyAktion.h
+++ b/Aufgabenblock_2/LazyAktion.h
@@ -33,7 +33,7 @@ public:
}
private:
- //using LazyAktion::p_ptLazyListe;
+ using LazyAktion::p_ptLazyListe; /* für gcc notwendig */
T p_tObjekt;
};
@@ -53,7 +53,7 @@ public:
}
private:
- //using LazyAktion::p_ptLazyListe; // für gcc notwendig
+ using LazyAktion::p_ptLazyListe; /* für gcc notwendig */
T p_tObjekt;
};
@@ -75,7 +75,7 @@ public:
}
private:
- //using LazyAktion::p_ptLazyListe; // für gcc notwendig
+ using LazyAktion::p_ptLazyListe; /* für gcc notwendig */
iterator p_itObjekt; // bei erase Iterator speichern
};
diff --git a/Aufgabenblock_2/SimuClient.dll b/Aufgabenblock_2/SimuClient.dll
new file mode 100644
index 0000000..186968c
Binary files /dev/null and b/Aufgabenblock_2/SimuClient.dll differ
diff --git a/Aufgabenblock_2/SimuClient.lib b/Aufgabenblock_2/SimuClient.lib
new file mode 100644
index 0000000..e92b793
Binary files /dev/null and b/Aufgabenblock_2/SimuClient.lib differ
diff --git a/Aufgabenblock_2/libsimu.so b/Aufgabenblock_2/libsimu.so
old mode 100644
new mode 100755
index f9ef4f1..8f24c85
Binary files a/Aufgabenblock_2/libsimu.so and b/Aufgabenblock_2/libsimu.so differ
diff --git a/Aufgabenblock_2/main.cpp b/Aufgabenblock_2/main.cpp
index 6c0f5e9..e4425a2 100644
--- a/Aufgabenblock_2/main.cpp
+++ b/Aufgabenblock_2/main.cpp
@@ -3,7 +3,9 @@
#include
#include
+#ifdef _WIN32 /* _Win32 is usually defined by compilers targeting 32 or 64 bit Windows systems */
#include
+#endif
#include "SimuClient.h"
#include "Fahrzeug.h"