<?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>Code Obscurata &#187; Preprocessor</title>
	<atom:link href="http://nealabq.com/blog/category/preprocessor/feed/" rel="self" type="application/rss+xml" />
	<link>http://nealabq.com/blog</link>
	<description>... dodging grues in the dark</description>
	<lastBuildDate>Mon, 08 Nov 2010 17:26:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Variadic tuple&lt;..&gt; &#8212; clever vs obvious</title>
		<link>http://nealabq.com/blog/2008/12/19/variadic-tuple/</link>
		<comments>http://nealabq.com/blog/2008/12/19/variadic-tuple/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 19:56:43 +0000</pubDate>
		<dc:creator>Neal</dc:creator>
				<category><![CDATA[C/C++]]></category>
		<category><![CDATA[Preprocessor]]></category>
		<category><![CDATA[templates]]></category>

		<guid isPermaLink="false">http://nealabq.com/blog/?p=644</guid>
		<description><![CDATA[I mentioned in my previous post how the tuple&#60;..> template class will be defined with variadic template parameters in the future. template&#60; typename ... TYPEs > class tuple; How do you define the body of a template like that? The implementation described in N2080 (see section A.1 on page 10) essentially defines tuple as a [...]]]></description>
		<wfw:commentRss>http://nealabq.com/blog/2008/12/19/variadic-tuple/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using templates to define an array class with constructors</title>
		<link>http://nealabq.com/blog/2008/10/09/template_arrays/</link>
		<comments>http://nealabq.com/blog/2008/10/09/template_arrays/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 23:59:32 +0000</pubDate>
		<dc:creator>Neal</dc:creator>
				<category><![CDATA[C/C++]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Preprocessor]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[templates]]></category>

		<guid isPermaLink="false">http://nealabq.com/blog/?p=533</guid>
		<description><![CDATA[In my last post I talked about the DEFINE_CLASS_ARRAY(..) preprocessing macro that defines a array-like classs able to invoke constructors on the array elements. In this post I&#8217;ll show another way to define array-like classes that use the constructors, this time using templates. In C++ primitive arrays the elements are initialized either with an initializer [...]]]></description>
		<wfw:commentRss>http://nealabq.com/blog/2008/10/09/template_arrays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using BOOST_PP_.. macros to define an array class with constructors</title>
		<link>http://nealabq.com/blog/2008/10/07/using-boost_pp_macros/</link>
		<comments>http://nealabq.com/blog/2008/10/07/using-boost_pp_macros/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 19:14:50 +0000</pubDate>
		<dc:creator>Neal</dc:creator>
				<category><![CDATA[C/C++]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Preprocessor]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[metaprogramming]]></category>

		<guid isPermaLink="false">http://nealabq.com/blog/?p=518</guid>
		<description><![CDATA[Sometimes when programming you just want an array of values, and you want to be able to construct the individual elements of the array, which isn&#8217;t easy with a raw array. You could use std::tr1::tuple&#60;..>, or even std::pair&#60;..> as your &#8220;array&#8221;, although it will have to be small (tuples are limited to 10 values). Or [...]]]></description>
		<wfw:commentRss>http://nealabq.com/blog/2008/10/07/using-boost_pp_macros/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Improved const_cast&lt;T&gt;(..) definition in C++</title>
		<link>http://nealabq.com/blog/2008/09/26/const_cast-2/</link>
		<comments>http://nealabq.com/blog/2008/09/26/const_cast-2/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 06:17:55 +0000</pubDate>
		<dc:creator>Neal</dc:creator>
				<category><![CDATA[C/C++]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Preprocessor]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[metaprogramming]]></category>
		<category><![CDATA[templates]]></category>

		<guid isPermaLink="false">http://nealabq.com/blog/?p=514</guid>
		<description><![CDATA[A few days ago I talked about how to define const_cast&#60;T>(..) as a templated function. My solution could not cast the const out of a data-member pointer however, because I did not have the type traits functions needed for the job. But yesterday I posted code to supply type-traits style functions to manipulate data-member pointers [...]]]></description>
		<wfw:commentRss>http://nealabq.com/blog/2008/09/26/const_cast-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

