<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Thor Event System]]></title><description><![CDATA[<p>Hi ich hab mir mal die Thor Lib angeguckt und würde die gerne in meinem Projekt benutzen als Eventlistener.<br />
Das Problem ist, ich blick durch die Tutorials von denen nicht so ganz durch, gibt es hier vielleicht jemanden der sich mit der library auskennt?<br />
Ich hab auch schon mit Google nach anderen tutorials gesucht hab aber nichts gefunden.</p>
<p>Also bis jetzt bin ich soweit:</p>
<p>Ich hab eine Klasse Engine (das Projekt wird eine kleine Tile Engine):</p>
<pre><code>#pragma once
#include &lt;SFML\Graphics.hpp&gt;

#include &quot;Input.h&quot;

class CEngine
{
public:
	CEngine();
	~CEngine();

private:
	// Render Target
	sf::RenderWindow* window;

	CInput inputSystem;

	bool Init();
	void EnterGame();
	void Update();
	void Input();
	void Render();

};
</code></pre>
<p>und hier die Klasse Input:</p>
<pre><code>#pragma once
#include &lt;SFML/Graphics.hpp&gt;
#include &lt;Thor/Input.hpp&gt;

class CInput
{
public:
	CInput(sf::RenderWindow&amp; w);
	~CInput();

	void AddCallback(std::string trigger, std::function&lt;thor::ActionContext&lt;thor::Action&gt;&gt; unaryListener) {
		thorSystem.connect(trigger, unaryListener);
	};

private:
	sf::RenderWindow window;
	thor::ActionMap &lt; std::string &gt;::CallbackSystem thorSystem;

};
</code></pre>
<p>So was ich nicht verstehe ist wie ich die Thor Actions und Maps benutzen muss.</p>
<p>Gruß darman96</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/328544/thor-event-system</link><generator>RSS for Node</generator><lastBuildDate>Tue, 07 Jul 2026 07:58:54 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/328544.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 15 Oct 2014 11:50:30 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Thor Event System on Wed, 15 Oct 2014 11:50:30 GMT]]></title><description><![CDATA[<p>Hi ich hab mir mal die Thor Lib angeguckt und würde die gerne in meinem Projekt benutzen als Eventlistener.<br />
Das Problem ist, ich blick durch die Tutorials von denen nicht so ganz durch, gibt es hier vielleicht jemanden der sich mit der library auskennt?<br />
Ich hab auch schon mit Google nach anderen tutorials gesucht hab aber nichts gefunden.</p>
<p>Also bis jetzt bin ich soweit:</p>
<p>Ich hab eine Klasse Engine (das Projekt wird eine kleine Tile Engine):</p>
<pre><code>#pragma once
#include &lt;SFML\Graphics.hpp&gt;

#include &quot;Input.h&quot;

class CEngine
{
public:
	CEngine();
	~CEngine();

private:
	// Render Target
	sf::RenderWindow* window;

	CInput inputSystem;

	bool Init();
	void EnterGame();
	void Update();
	void Input();
	void Render();

};
</code></pre>
<p>und hier die Klasse Input:</p>
<pre><code>#pragma once
#include &lt;SFML/Graphics.hpp&gt;
#include &lt;Thor/Input.hpp&gt;

class CInput
{
public:
	CInput(sf::RenderWindow&amp; w);
	~CInput();

	void AddCallback(std::string trigger, std::function&lt;thor::ActionContext&lt;thor::Action&gt;&gt; unaryListener) {
		thorSystem.connect(trigger, unaryListener);
	};

private:
	sf::RenderWindow window;
	thor::ActionMap &lt; std::string &gt;::CallbackSystem thorSystem;

};
</code></pre>
<p>So was ich nicht verstehe ist wie ich die Thor Actions und Maps benutzen muss.</p>
<p>Gruß darman96</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2422326</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2422326</guid><dc:creator><![CDATA[darman96]]></dc:creator><pubDate>Wed, 15 Oct 2014 11:50:30 GMT</pubDate></item><item><title><![CDATA[Reply to Thor Event System on Wed, 15 Oct 2014 19:27:29 GMT]]></title><description><![CDATA[<p>Lass den C Präfix weg und schreib Funktionsnamen klein <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
<p>Hab noch nie was von der Library gehört, aber hier scheint es recht gut beschrieben zu sein:</p>
<p><a href="http://www.bromeon.ch/libraries/thor/v1.1/tutorial-actions.html" rel="nofollow">http://www.bromeon.ch/libraries/thor/v1.1/tutorial-actions.html</a></p>
<p>Keine Ahnung, was dein Problem ist. Das wird dir wohl keiner vorkauen wollen, da musst dich schon selber durchbeißen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2422425</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2422425</guid><dc:creator><![CDATA[Mechanics]]></dc:creator><pubDate>Wed, 15 Oct 2014 19:27:29 GMT</pubDate></item><item><title><![CDATA[Reply to Thor Event System on Wed, 15 Oct 2014 21:38:29 GMT]]></title><description><![CDATA[<p>Wieso das C Präfix weglassen und die Namen klein?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2422447</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2422447</guid><dc:creator><![CDATA[darman96]]></dc:creator><pubDate>Wed, 15 Oct 2014 21:38:29 GMT</pubDate></item><item><title><![CDATA[Reply to Thor Event System on Wed, 15 Oct 2014 21:56:31 GMT]]></title><description><![CDATA[<p>darman96 schrieb:</p>
<blockquote>
<p>Wieso das C Präfix weglassen und die Namen klein?</p>
</blockquote>
<p>Zum C: Nützt es dir zu wissen, dass CInput eine class ist? Im Gegensatz zu was überhaupt? Es kann ja nur eine Klasse oder ein anderer Typ sein, wenn es wie ein Typ benutzt wird. Und wenn es wie ein Typ benutzt wird, ist es nicht wichtig zu wissen, ob es eine Klasse oder irgendwas anderes ist.</p>
<p>Zur Kleinschreibung von Funktionen: Es ist die übliche Namenskonvention. Aber hier gilt nur, dass es üblich ist. Es gibt keine starken Gründe, warum man nicht alles groß schreiben sollte. Hauptsache einheitlich. Aber es hat den Vorteil, dass andere Programmierer sich eher wie Zuhause fühlen, wenn sie deinen Code lesen und du die üblichen Konventionen benutzt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2422448</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2422448</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Wed, 15 Oct 2014 21:56:31 GMT</pubDate></item><item><title><![CDATA[Reply to Thor Event System on Wed, 15 Oct 2014 22:08:47 GMT]]></title><description><![CDATA[<p>Hmm okay ich weiß nur das Crytek das so mit der CryEngine gemacht hat, da dachte ich das wäre üblich.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2422452</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2422452</guid><dc:creator><![CDATA[darman96]]></dc:creator><pubDate>Wed, 15 Oct 2014 22:08:47 GMT</pubDate></item><item><title><![CDATA[Reply to Thor Event System on Wed, 15 Oct 2014 22:38:43 GMT]]></title><description><![CDATA[<p>Irrlicht macht es auch, um die verschiedenen Typen zu unterscheiden, also C fuer Klasse im normalen Sinne, I fuer Interface und S fuer structs, also Datensammlungen ohne definierte Methoden.<br />
Ich wuerde so eine Library aber auch voellig anders designen, sodass die Interfaces wegfallen und man diese Unterscheidungen gar nicht braucht.<br />
Heutzutage baut man Klassen auch so, dass sie in der Verwendung wie ein eingebauter Datentyp sind (z.B. std::complex und float oder iterator und pointer).</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2422456</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2422456</guid><dc:creator><![CDATA[Marthog]]></dc:creator><pubDate>Wed, 15 Oct 2014 22:38:43 GMT</pubDate></item><item><title><![CDATA[Reply to Thor Event System on Wed, 22 Oct 2014 22:11:45 GMT]]></title><description><![CDATA[<p>So ich hab immernoch ein Problem...</p>
<p>Visual Studio gibt mir immer diese Fehler:</p>
<pre><code>Fehler	1	error C2027: Verwendung des undefinierten Typs &quot;std::_Get_function_impl&lt;_Fty&gt;&quot;	c:\program files (x86)\microsoft visual studio 12.0\vc\include\functional	550	1	Tile Engine

Fehler	2	error C2504: 'type': Basisklasse undefiniert	c:\program files (x86)\microsoft visual studio 12.0\vc\include\functional	551	1	Tile Engine

Fehler	3	error C2027: Verwendung des undefinierten Typs &quot;std::_Get_function_impl&lt;_Fty&gt;&quot;	c:\program files (x86)\microsoft visual studio 12.0\vc\include\functional	554	1	Tile Engine

Fehler	4	error C2146: Syntaxfehler: Fehlendes ';' vor Bezeichner '_Mybase'	c:\program files (x86)\microsoft visual studio 12.0\vc\include\functional	554	1	Tile Engine

Fehler	5	error C4430: Fehlender Typspezifizierer - int wird angenommen. Hinweis: &quot;default-int&quot; wird von C++ nicht unterstützt.	c:\program files (x86)\microsoft visual studio 12.0\vc\include\functional	554	1	Tile Engine

...
</code></pre>
<p>und noch mehr</p>
<p>ich hab aber keine ahnung was das Programm mir damit sagen will...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2423440</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2423440</guid><dc:creator><![CDATA[darman96]]></dc:creator><pubDate>Wed, 22 Oct 2014 22:11:45 GMT</pubDate></item><item><title><![CDATA[Reply to Thor Event System on Thu, 23 Oct 2014 01:59:15 GMT]]></title><description><![CDATA[<p>SeppJ schrieb:</p>
<blockquote>
<p>Zur Kleinschreibung von Funktionen: Es ist die übliche Namenskonvention.</p>
</blockquote>
<p>In Java vielleicht.<br />
In C++ Projekten sehe ich viel häufiger PascalCaseFunktionsNamen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2423457</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2423457</guid><dc:creator><![CDATA[hustbaer]]></dc:creator><pubDate>Thu, 23 Oct 2014 01:59:15 GMT</pubDate></item><item><title><![CDATA[Reply to Thor Event System on Sat, 25 Oct 2014 12:51:37 GMT]]></title><description><![CDATA[<p>Weiß denn keiner was zu den Fehlermeldungen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2423970</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2423970</guid><dc:creator><![CDATA[darman96]]></dc:creator><pubDate>Sat, 25 Oct 2014 12:51:37 GMT</pubDate></item><item><title><![CDATA[Reply to Thor Event System on Sat, 25 Oct 2014 13:02:51 GMT]]></title><description><![CDATA[<p>Du inkludierst irgendwo ne STL Header, und DAVOR hast du Müll stehen. Vermutlich.<br />
Viel mehr lässt sich da nicht rauslesen.<br />
Code der zu diesen Fehlermeldungen führt zeigst du uns ja nicht.<br />
Fehlermeldungen von deutschen VS Versionen sind auch nicht sehr beliebt.<br />
...<br />
Tjo. Viel mehr gibt's dazu nicht zu sagen denke ich.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2423971</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2423971</guid><dc:creator><![CDATA[hustbaer]]></dc:creator><pubDate>Sat, 25 Oct 2014 13:02:51 GMT</pubDate></item><item><title><![CDATA[Reply to Thor Event System on Sat, 25 Oct 2014 13:15:27 GMT]]></title><description><![CDATA[<p>hustbaer schrieb:</p>
<blockquote>
<p>SeppJ schrieb:</p>
<blockquote>
<p>Zur Kleinschreibung von Funktionen: Es ist die übliche Namenskonvention.</p>
</blockquote>
<p>In Java vielleicht.<br />
In C++ Projekten sehe ich viel häufiger PascalCaseFunktionsNamen.</p>
</blockquote>
<p>Naja, Windows.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2423975</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2423975</guid><dc:creator><![CDATA[volkard]]></dc:creator><pubDate>Sat, 25 Oct 2014 13:15:27 GMT</pubDate></item><item><title><![CDATA[Reply to Thor Event System on Sat, 25 Oct 2014 13:18:25 GMT]]></title><description><![CDATA[<p>So hier nochmal der ganze Code.</p>
<p>Main.cpp:</p>
<pre><code>#include &quot;Engine.h&quot;

int main() {

	CEngine engine;

	sf::RenderWindow window(sf::VideoMode(800, 600), &quot;Tile Engine&quot;);

	engine.Init(&amp;window);

	while (window.isOpen()) {
		engine.Render();
		engine.Update();
	}

}
</code></pre>
<p>Engine.h:</p>
<pre><code>#pragma once
#pragma once
#include &lt;SFML\Graphics.hpp&gt;

#include &quot;Input.h&quot;

class CEngine
{
public:
	CEngine();
	~CEngine();

	bool Init(sf::RenderWindow *window);
	void EnterGame();
	void Update();
	void Input();
	void Render();

private:
	// Render Target
	sf::RenderWindow* window;

	CInput inputSystem;

	void onKeyPress(thor::ActionContext&lt;std::string&gt; context)
	{
		if (context.event-&gt;key.code == sf::Keyboard::X) {
			window-&gt;close();
		}
	};

};
</code></pre>
<p>Engine.cpp:</p>
<pre><code>#include &quot;Engine.h&quot;

CEngine::CEngine()
{
	CInput temp(window);
	inputSystem = temp;
}

CEngine::~CEngine()
{
}

bool CEngine::Init(sf::RenderWindow *window) {

	this-&gt;window = window;

	inputSystem.AddCallback(&quot;keyPressed&quot;, &amp;onKeyPress);
}

void CEngine::Render() {
	window-&gt;clear();
	window-&gt;display();
}
</code></pre>
<p>Input.h:</p>
<pre><code>#pragma once
#include &lt;SFML/Graphics.hpp&gt;
#include &lt;Thor/Input.hpp&gt;

class CInput
{
public:
	CInput();
	CInput(sf::RenderWindow* w);
	~CInput();

	void AddCallback(std::string trigger, std::function&lt;thor::ActionContext&lt;thor::Action&gt;&gt; unaryListener) {
		thorSystem.connect(trigger, unaryListener);
	};

private:
	sf::RenderWindow window;
	thor::ActionMap &lt; std::string &gt;::CallbackSystem thorSystem;

	void InitActions();

};
</code></pre>
<p>Input.cpp:</p>
<pre><code>#include &quot;Input.h&quot;

CInput::CInput(sf::RenderWindow* window) {
	this-&gt;window = *window;
}

CInput::~CInput()
{
}

void CInput::InitActions() {

	thor::Action closeRequest(sf::Event::Closed);
	thor::Action keyPressed(sf::Event::KeyPressed);
	thor::Action leftMouseButton(sf::Mouse::Left, thor::Action::PressOnce);

	thor::ActionMap&lt;std::string&gt; actions;
	actions[&quot;close&quot;] = closeRequest;
	actions[&quot;keyPressed&quot;] = keyPressed;
	actions[&quot;leftMouse&quot;] = leftMouseButton;

	actions.invokeCallbacks(thorSystem, &amp;window);
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/2423977</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2423977</guid><dc:creator><![CDATA[darman96]]></dc:creator><pubDate>Sat, 25 Oct 2014 13:18:25 GMT</pubDate></item><item><title><![CDATA[Reply to Thor Event System on Mon, 27 Oct 2014 20:59:27 GMT]]></title><description><![CDATA[<p>immer noch nichts?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2424415</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2424415</guid><dc:creator><![CDATA[darman96]]></dc:creator><pubDate>Mon, 27 Oct 2014 20:59:27 GMT</pubDate></item><item><title><![CDATA[Reply to Thor Event System on Tue, 28 Oct 2014 00:23:59 GMT]]></title><description><![CDATA[<p>Also es fehlen<br />
<code>#include &lt;functional&gt;</code><br />
und<br />
<code>#include &lt;string&gt;</code></p>
<p>Kannst ja mal probieren ob es was bringt die einzufügen. Wobei ich anhand der Fehler eher auf ein anderes Problem tippen würde. Der Rest sieht aber soweit richtig aus, also...</p>
<p>Probier' halt selbst ein wenig rum.<br />
Nimm Stück für Sütck Code weg, so lange bis der Fehler verschwindet. So grenzt man Fehler ein die man nicht auf anderem Weg findet.<br />
Irgendwann hast du dann eine Version die geht, und eine davor (mit weniger &quot;weggenommenem&quot; Code) die nicht geht. Dann guckst du dir den Code an der unterschiedlich ist, und überlegst dir was das Problem sein könnte.</p>
<p>ps:<br />
Gerade erst gesehen:</p>
<pre><code class="language-cpp">private:
    sf::RenderWindow window;

// ....

this-&gt;window = *window;
</code></pre>
<p>Das kann nicht gehen. Wie du in der Doku sehen kannst<br />
<a href="http://sfml-dev.org/documentation/2.0/classsf_1_1RenderWindow.php" rel="nofollow">http://sfml-dev.org/documentation/2.0/classsf_1_1RenderWindow.php</a><br />
ist <code>sf::RenderWindow</code> noncopyable.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2424442</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2424442</guid><dc:creator><![CDATA[hustbaer]]></dc:creator><pubDate>Tue, 28 Oct 2014 00:23:59 GMT</pubDate></item><item><title><![CDATA[Reply to Thor Event System on Tue, 28 Oct 2014 05:51:28 GMT]]></title><description><![CDATA[<p>Okay danke.</p>
<p>Wofür ist denn die functional?<br />
ich mein ich benutz nur methoden die ich sonst auch immer ohne die functional benutzt hab.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2424457</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2424457</guid><dc:creator><![CDATA[darman96]]></dc:creator><pubDate>Tue, 28 Oct 2014 05:51:28 GMT</pubDate></item><item><title><![CDATA[Reply to Thor Event System on Tue, 28 Oct 2014 06:11:24 GMT]]></title><description><![CDATA[<p>darman96 schrieb:</p>
<blockquote>
<p>Wofür ist denn die functional?<br />
ich mein ich benutz nur methoden die ich sonst auch immer ohne die functional benutzt hab.</p>
</blockquote>
<p><a href="http://en.cppreference.com/w/cpp/utility/functional/function" rel="nofollow">http://en.cppreference.com/w/cpp/utility/functional/function</a><br />
(Du nutztt <code>std::function&lt;&gt;</code> in Z.12 von input.h)</p>
<p>Kann durchaus sein, dass Dein Programm &lt;functional&gt; irgendwo aufschnappt. Z.B. koennte SFML <code>&lt;functional&gt;</code>  <code>#includ</code> en.<br />
Aber der Vollständigkeit halber solltest Du es selber aufführen - kann ja auch sein, dass in der näxten Version das <code>#include</code> in SFML wegfällt und dann kompiliert Dein Programm nicht mehr.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2424458</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2424458</guid><dc:creator><![CDATA[Furble Wurble]]></dc:creator><pubDate>Tue, 28 Oct 2014 06:11:24 GMT</pubDate></item><item><title><![CDATA[Reply to Thor Event System on Tue, 28 Oct 2014 21:22:26 GMT]]></title><description><![CDATA[<p>Hat nicht viel gebracht es sind immer noch Fehler da...</p>
<p>Hier die Fehler: <a href="https://www.dropbox.com/s/zcxfu0lpmgzigsa/Error.PNG?dl=0" rel="nofollow">https://www.dropbox.com/s/zcxfu0lpmgzigsa/Error.PNG?dl=0</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2424611</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2424611</guid><dc:creator><![CDATA[darman96]]></dc:creator><pubDate>Tue, 28 Oct 2014 21:22:26 GMT</pubDate></item><item><title><![CDATA[Reply to Thor Event System on Tue, 28 Oct 2014 21:31:13 GMT]]></title><description><![CDATA[<p>Das sind die Fehler, schau mal in die Ausgabe. Da sieht man oft mehr, z.B. wo der Fehler in deinem Code herkommt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2424613</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2424613</guid><dc:creator><![CDATA[Mechanics]]></dc:creator><pubDate>Tue, 28 Oct 2014 21:31:13 GMT</pubDate></item><item><title><![CDATA[Reply to Thor Event System on Tue, 28 Oct 2014 21:39:23 GMT]]></title><description><![CDATA[<p>es liegt auf jedem fall an dem kram mit der Thor Lib.<br />
Wenn ich das rausschmeiße dann geht's.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2424615</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2424615</guid><dc:creator><![CDATA[darman96]]></dc:creator><pubDate>Tue, 28 Oct 2014 21:39:23 GMT</pubDate></item><item><title><![CDATA[Reply to Thor Event System on Tue, 28 Oct 2014 22:06:29 GMT]]></title><description><![CDATA[<p>Auch doof.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2424617</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2424617</guid><dc:creator><![CDATA[hustbaer]]></dc:creator><pubDate>Tue, 28 Oct 2014 22:06:29 GMT</pubDate></item><item><title><![CDATA[Reply to Thor Event System on Tue, 28 Oct 2014 22:21:01 GMT]]></title><description><![CDATA[<p>darman96 schrieb:</p>
<blockquote>
<p>es liegt auf jedem fall an dem kram mit der Thor Lib.<br />
Wenn ich das rausschmeiße dann geht's.</p>
</blockquote>
<p>Das sieht trotzdem nach einem fehlenden Include aus. Oder vielleicht ist es auch nicht mit deinem VS kompatibel und du musst den Code etwas anpassen, kommt auch vor.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2424618</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2424618</guid><dc:creator><![CDATA[Mechanics]]></dc:creator><pubDate>Tue, 28 Oct 2014 22:21:01 GMT</pubDate></item></channel></rss>