<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>HawkCreation &#187; C/C++</title>
	<atom:link href="http://hawkcreation.com/tag/cc/feed/" rel="self" type="application/rss+xml" />
	<link>http://hawkcreation.com</link>
	<description></description>
	<lastBuildDate>Mon, 16 Jan 2012 21:08:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Linux : Compilation d&#8217;un programme contenant tinyxml</title>
		<link>http://hawkcreation.com/2012/01/16/linux-compilation-dun-programme-contenant-tinyxml/</link>
		<comments>http://hawkcreation.com/2012/01/16/linux-compilation-dun-programme-contenant-tinyxml/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 21:08:53 +0000</pubDate>
		<dc:creator>Romain</dc:creator>
				<category><![CDATA[Tutoriels]]></category>
		<category><![CDATA[C/C++]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programmation]]></category>

		<guid isPermaLink="false">http://hawkcreation.com/?p=1238</guid>
		<description><![CDATA[Il peut arriver que sous certaines versions de Linux, lorsque vous compilez votre programme vous ayez un message dans le style ci-dessous. Mon programme se compilait bien sous Windows tout comme avec une version récente d&#8217;Ubuntu mais pourtant sur une distribution un peu plus vieille, impossible&#8230; (.text._ZN11TiXmlString4quitEv[TiXmlString::quit()]+0x15): undefined reference to `TiXmlString::nullrep_' Pour arriver à compiler [...]]]></description>
		<wfw:commentRss>http://hawkcreation.com/2012/01/16/linux-compilation-dun-programme-contenant-tinyxml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Librairies Linux pré-compilé pour Windows</title>
		<link>http://hawkcreation.com/2011/08/28/librairies-linux-pre-compile-pour-windows/</link>
		<comments>http://hawkcreation.com/2011/08/28/librairies-linux-pre-compile-pour-windows/#comments</comments>
		<pubDate>Sun, 28 Aug 2011 08:56:12 +0000</pubDate>
		<dc:creator>Romain</dc:creator>
				<category><![CDATA[Tutoriels]]></category>
		<category><![CDATA[C/C++]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Programmation]]></category>

		<guid isPermaLink="false">http://hawkcreation.com/?p=1152</guid>
		<description><![CDATA[Si comme moi vous n&#8217;avez pas forcément le temps de chercher pendant des heures pour trouver les .lib d&#8217;une librairie Open Source compilé pour Windows, il y a peut être une solution ! Le projet KDE Windows Initiative est un projet visant à porter les applications KDE vers la plateforme Windows. Dans mon cas, je [...]]]></description>
		<wfw:commentRss>http://hawkcreation.com/2011/08/28/librairies-linux-pre-compile-pour-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convertir un timestamp en QDateTime</title>
		<link>http://hawkcreation.com/2011/03/09/convertir-un-timestamp-en-qdatetime/</link>
		<comments>http://hawkcreation.com/2011/03/09/convertir-un-timestamp-en-qdatetime/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 09:13:21 +0000</pubDate>
		<dc:creator>Romain</dc:creator>
				<category><![CDATA[Tutoriels]]></category>
		<category><![CDATA[C/C++]]></category>
		<category><![CDATA[Qt]]></category>

		<guid isPermaLink="false">http://hawkcreation.com/?p=1075</guid>
		<description><![CDATA[Au rayon des astuces qui peuvent être prise de tête à faire, voici comment convertir un entier (correspondant au timestamp d&#8217;une date) en une date dd/mm/yyyy. //Creation d'une pseudo variable timestamp int i_timestamp = 123456789; //Creation de l'objet QDateTime qui va se charger de convertir QDateTime timestamp; //Association de la date en seconde à l'objet [...]]]></description>
		<wfw:commentRss>http://hawkcreation.com/2011/03/09/convertir-un-timestamp-en-qdatetime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>QWidget : Le centrer au milieu de l&#8217;ecran</title>
		<link>http://hawkcreation.com/2011/02/23/qwidget-le-centrer-au-milieu-de-lecran/</link>
		<comments>http://hawkcreation.com/2011/02/23/qwidget-le-centrer-au-milieu-de-lecran/#comments</comments>
		<pubDate>Wed, 23 Feb 2011 20:08:56 +0000</pubDate>
		<dc:creator>Romain</dc:creator>
				<category><![CDATA[Tutoriels]]></category>
		<category><![CDATA[C/C++]]></category>
		<category><![CDATA[Qt]]></category>

		<guid isPermaLink="false">http://hawkcreation.com/?p=1060</guid>
		<description><![CDATA[Pour ceux qui chercheraient à faire en sorte de centrer un widget au milieu de l&#8217;écran, voici une solution à leur problème. //Creation du widget QWidget *widget = new QWidget(); //Definir la taille du widget widget-&#62;setFixedSize(1024,768); //Positionner widget au milieu de l'ecran widget-&#62;move((QApplication::desktop()-&#62;width() - widget-&#62;width())/2, (QApplication::desktop()-&#62;height() - widget-&#62;height())/2); //Afficher le widget widget-&#62;show(); Longue vie à [...]]]></description>
		<wfw:commentRss>http://hawkcreation.com/2011/02/23/qwidget-le-centrer-au-milieu-de-lecran/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQLite 3 : Créer le fichier .lib</title>
		<link>http://hawkcreation.com/2010/10/04/sqlite3-fichier-lib/</link>
		<comments>http://hawkcreation.com/2010/10/04/sqlite3-fichier-lib/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 21:30:57 +0000</pubDate>
		<dc:creator>Romain</dc:creator>
				<category><![CDATA[Tutoriels]]></category>
		<category><![CDATA[C/C++]]></category>

		<guid isPermaLink="false">http://hawkcreation.com/?p=794</guid>
		<description><![CDATA[Pour les développeurs qui auraient besoin d&#8217;utiliser SQLite3, j&#8217;avais déjà expliqué dans un précédent article comment créer le fichier .a permettant de compiler avec g++. Si vous travaillez avec Visual Studio, il va falloir travailler avec les .lib et il ne suffit pas de renommer pour que ça marche&#8230; Lancez un Command Prompt de Visual [...]]]></description>
		<wfw:commentRss>http://hawkcreation.com/2010/10/04/sqlite3-fichier-lib/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>QDevelop : IDE pour Qt</title>
		<link>http://hawkcreation.com/2010/09/09/qdevelop-ide-pour-qt/</link>
		<comments>http://hawkcreation.com/2010/09/09/qdevelop-ide-pour-qt/#comments</comments>
		<pubDate>Thu, 09 Sep 2010 20:13:31 +0000</pubDate>
		<dc:creator>Romain</dc:creator>
				<category><![CDATA[Actualités]]></category>
		<category><![CDATA[Tutoriels]]></category>
		<category><![CDATA[C/C++]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Programmation]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://hawkcreation.com/?p=731</guid>
		<description><![CDATA[Même si pour développer avec Qt il existe QtCreator, vous pouvez également installer un plugin permettant de programmer en Qt sous Visual Studio (la version 2010 pour le moment n&#8217;est pas supporter ni les éditions Express) ou alors vous pouvez utiliser QDevelop. Ce logiciel est un dérivé de KDevelop l&#8217;IDE (Environnement de développement disponible sous [...]]]></description>
		<wfw:commentRss>http://hawkcreation.com/2010/09/09/qdevelop-ide-pour-qt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Créer libsqlite3.a avec MinGW sous windows</title>
		<link>http://hawkcreation.com/2010/07/12/creer-libsqlite3-a-avec-mingw-sous-windows/</link>
		<comments>http://hawkcreation.com/2010/07/12/creer-libsqlite3-a-avec-mingw-sous-windows/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 18:50:06 +0000</pubDate>
		<dc:creator>Romain</dc:creator>
				<category><![CDATA[Tutoriels]]></category>
		<category><![CDATA[C/C++]]></category>
		<category><![CDATA[MinGW]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://hawkcreation.com/?p=647</guid>
		<description><![CDATA[Si vous avez besoin de réaliser une application avec un système de base de donnée embarqué, il peut être utile d&#8217;utiliser Sqlite. Toutefois avant de pouvoir programmer, il serait bien d&#8217;avoir le fichier .a qui permet la compilation. Pour créer le fichier libsqlite3.a, rendez-vous sur la page de téléchargement du site web et téléchargez sqlite-amalgamation-3_6_23_1.zip [...]]]></description>
		<wfw:commentRss>http://hawkcreation.com/2010/07/12/creer-libsqlite3-a-avec-mingw-sous-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SFML Installation et Compilation</title>
		<link>http://hawkcreation.com/2010/05/31/sfml-installation-et-compilation/</link>
		<comments>http://hawkcreation.com/2010/05/31/sfml-installation-et-compilation/#comments</comments>
		<pubDate>Mon, 31 May 2010 11:28:18 +0000</pubDate>
		<dc:creator>Romain</dc:creator>
				<category><![CDATA[Tutoriels]]></category>
		<category><![CDATA[C/C++]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MinGW]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://hawkcreation.com/?p=615</guid>
		<description><![CDATA[La librairie SFML est une librairie permettant le développement d&#8217;applications multimédias. Cette librairie écrite en C++ mais également dans d&#8217;autres langages se veut être une alternative objet à SDL. Elle est composé de différents modules à savoir : module système : il gère l&#8217;horloge et les threads module graphique : tout ce qui est affichage [...]]]></description>
		<wfw:commentRss>http://hawkcreation.com/2010/05/31/sfml-installation-et-compilation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installer le SDK de Qt</title>
		<link>http://hawkcreation.com/2010/05/01/installer-le-sdk-de-qt/</link>
		<comments>http://hawkcreation.com/2010/05/01/installer-le-sdk-de-qt/#comments</comments>
		<pubDate>Sat, 01 May 2010 16:30:45 +0000</pubDate>
		<dc:creator>Romain</dc:creator>
				<category><![CDATA[Tutoriels]]></category>
		<category><![CDATA[C/C++]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MinGW]]></category>
		<category><![CDATA[Programmation]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://hawkcreation.com/?p=485</guid>
		<description><![CDATA[Pour les développeurs en herbes qui désireraient programmer des logiciels avec interface graphique, les choses se sont simplifié en C/C++ avec l&#8217;arrivé de Qt ! Le framework Qt permet la réalisation d&#8217;applications en C/C++ avec interface graphique et portable sur les trois plateformes. Cette librairie est passé sous licence LGPL depuis 2009 permettant la réalisation [...]]]></description>
		<wfw:commentRss>http://hawkcreation.com/2010/05/01/installer-le-sdk-de-qt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MinGW – Changer l&#8217;icône de votre exécutable</title>
		<link>http://hawkcreation.com/2010/04/25/mingw-%e2%80%93-changer-licone-de-votre-executable/</link>
		<comments>http://hawkcreation.com/2010/04/25/mingw-%e2%80%93-changer-licone-de-votre-executable/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 15:18:53 +0000</pubDate>
		<dc:creator>Romain</dc:creator>
				<category><![CDATA[Tutoriels]]></category>
		<category><![CDATA[C/C++]]></category>
		<category><![CDATA[MinGW]]></category>
		<category><![CDATA[Programmation]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://hawkcreation.com/?p=391</guid>
		<description><![CDATA[Maintenant que vous avez réalisé le logiciel qui va probablement révolutionner le monde, il serait intéressant de changer l&#8217;icône basique par un icône digne de votre programme ! Bien loin des idées de décompilation, d&#8217;utiliser ResHacker (qui ne fonctionnerait probablement pas avec votre application) où tout autres logiciels pour modifier votre exécutable, votre compilateur chérie [...]]]></description>
		<wfw:commentRss>http://hawkcreation.com/2010/04/25/mingw-%e2%80%93-changer-licone-de-votre-executable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C/C++, Les Arguments</title>
		<link>http://hawkcreation.com/2009/05/03/cc-les-arguments/</link>
		<comments>http://hawkcreation.com/2009/05/03/cc-les-arguments/#comments</comments>
		<pubDate>Sun, 03 May 2009 14:16:25 +0000</pubDate>
		<dc:creator>Romain</dc:creator>
				<category><![CDATA[Tutoriels]]></category>
		<category><![CDATA[C/C++]]></category>
		<category><![CDATA[Programmation]]></category>

		<guid isPermaLink="false">http://hawkcreation.com/?p=266</guid>
		<description><![CDATA[Il est parfois utile de fournir des arguments à un programme par l&#8217;intermédiaire de son exécutable. Sous Linux lorsque vous faites cd /home vous passez /home à la commande cd. Pour un jeu par exemple, vous pouvez passer en arguments la résolution de l&#8217;écran pour que les joueurs puissent mettre la résolution native de leur [...]]]></description>
		<wfw:commentRss>http://hawkcreation.com/2009/05/03/cc-les-arguments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

