<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://wiki-de.moshellshocker.dns64.de/index.php?action=history&amp;feed=atom&amp;title=Ultimate%2B%2B</id>
	<title>Ultimate++ - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://wiki-de.moshellshocker.dns64.de/index.php?action=history&amp;feed=atom&amp;title=Ultimate%2B%2B"/>
	<link rel="alternate" type="text/html" href="https://wiki-de.moshellshocker.dns64.de/index.php?title=Ultimate%2B%2B&amp;action=history"/>
	<updated>2026-06-08T09:29:30Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in Wikipedia (Deutsch) – Lokale Kopie</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://wiki-de.moshellshocker.dns64.de/index.php?title=Ultimate%2B%2B&amp;diff=1153392&amp;oldid=prev</id>
		<title>imported&gt;SchlurcherBot: Bot: http → https</title>
		<link rel="alternate" type="text/html" href="https://wiki-de.moshellshocker.dns64.de/index.php?title=Ultimate%2B%2B&amp;diff=1153392&amp;oldid=prev"/>
		<updated>2026-02-20T04:55:27Z</updated>

		<summary type="html">&lt;p&gt;Bot: http → https&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;
{{Infobox Software&lt;br /&gt;
|Name                 = Ultimate++&lt;br /&gt;
|Screenshot           = [[file:Upp Screenshot.png|400px]]&lt;br /&gt;
|Beschreibung         = Entwicklungsumgebung für C++&lt;br /&gt;
|Hersteller           = [https://www.ultimatepp.org/app$ide$About$en-us.html Ultimate++ team]&lt;br /&gt;
|Erscheinungsjahr     = 22. März 2004&amp;lt;ref&amp;gt;{{internetquelle |url=https://sourceforge.net/p/upp/news/?page=4|titel=release notes|zugriff=2025-06-02}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
|AktuelleVersion      = 2024.1.1 (rev 17490)&amp;lt;ref&amp;gt;{{internetquelle |url=https://www.ultimatepp.org/www$uppweb$Roadmap$en-us.html|titel=release notes|zugriff=2025-02-08}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
|AktuelleVersionFreigabeDatum = 18. Dezember 2024&lt;br /&gt;
|Betriebssystem       = [[Microsoft Windows|Windows]] / [[Linux]] / [[Unix-Derivat]]e&lt;br /&gt;
|Kategorie            = [[Integrierte Entwicklungsumgebung|IDE]]&lt;br /&gt;
|Lizenz               = [[BSD-Lizenz]]&lt;br /&gt;
|Deutsch              = nein&lt;br /&gt;
|Website              = [http://www.ultimatepp.org/ ultimatepp.org]&lt;br /&gt;
}}&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Ultimate++&amp;#039;&amp;#039;&amp;#039; ist eine freie [[Integrierte Entwicklungsumgebung|Entwicklungsumgebung]] für [[C++]]. Sie läuft unter Windows und den meisten Unix-Derivaten.&lt;br /&gt;
Zur Programmierung einer [[Grafische Benutzeroberfläche|grafischen Benutzeroberfläche]] wird &amp;#039;&amp;#039;&amp;#039;U++&amp;#039;&amp;#039;&amp;#039; verwendet.&lt;br /&gt;
Ultimate++-Distributionen werden mit weiteren Bibliotheken ausgeliefert:&lt;br /&gt;
* [[zlib]]&lt;br /&gt;
* [[libjpeg]]&lt;br /&gt;
* [[bzip2]]&lt;br /&gt;
* [[ndisasm]]&lt;br /&gt;
* [[Portable Network Graphics|PNG]]&lt;br /&gt;
* [[Sqlite]]&lt;br /&gt;
* [[Tagged Image File Format|TIF]]&lt;br /&gt;
&lt;br /&gt;
Es werden mehrere [[Compiler]] unterstützt:&lt;br /&gt;
* [[GNU Compiler Collection|GCC]] (Linux)&lt;br /&gt;
* [[MinGW]] (Win32)&lt;br /&gt;
* [http://msdn.microsoft.com/de-de/library/aa287122(VS.71).aspx Visual C++ Toolkit 2003] (Win32)&lt;br /&gt;
&lt;br /&gt;
==Hello World==&lt;br /&gt;
Folgendes Beispiel zeigt ein C++Programm mit einem Button &amp;quot;Hello world!&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;cpp&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;CtrlLib/CtrlLib.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
using namespace Upp;&lt;br /&gt;
&lt;br /&gt;
class MyApp : public TopWindow &lt;br /&gt;
{&lt;br /&gt;
public:&lt;br /&gt;
    MyApp() &lt;br /&gt;
    {&lt;br /&gt;
        Title(&amp;quot;Hello world&amp;quot;);&lt;br /&gt;
        button.SetLabel(&amp;quot;Hello world!&amp;quot;);&lt;br /&gt;
        button &amp;lt;&amp;lt; [=] {&lt;br /&gt;
            if (PromptYesNo(&amp;quot;Button gedrückt. Programm verlassen?&amp;quot;))&lt;br /&gt;
                Break();&lt;br /&gt;
        };&lt;br /&gt;
        Add(button.HSizePos(100, 100).VSizePos(100, 100));&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
private:&lt;br /&gt;
    Button button;&lt;br /&gt;
};&lt;br /&gt;
&lt;br /&gt;
GUI_APP_MAIN&lt;br /&gt;
{&lt;br /&gt;
    MyApp().Run();&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Weblinks ==&lt;br /&gt;
* [http://www.ultimatepp.org/ Offizielle Website]&lt;br /&gt;
&lt;br /&gt;
== Einzelnachweise ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Kategorie:Freie integrierte Entwicklungsumgebung]]&lt;/div&gt;</summary>
		<author><name>imported&gt;SchlurcherBot</name></author>
	</entry>
</feed>