<?xml version="1.0" encoding="iso-8859-1" ?>
<rss version="2.0">
<channel>
	<title><![CDATA[cout&lt;&lt;alias120sBlog]]></title>
	<link><![CDATA[http://www.dreamincode.net/forums/index.php?app=blog&module=showblog&blogid=801]]></link>
	<description><![CDATA[cout&lt;&lt;alias120sBlog Syndication]]></description>
	<pubDate>Mon, 22 Aug 2011 06:59:32 +0000</pubDate>
	<webMaster>admin@dreamincode.net (Dream.In.Code)</webMaster>
	<generator>IP.Blog</generator>
	<ttl>60</ttl>
	<item>
		<title>A New Chapter</title>
		<link>http://www.dreamincode.net/forums/blog/801/entry-3660-a-new-chapter/</link>
		<category></category>
		<description><![CDATA[Good Morning DIC, <br /><br />So, after six years I am about to end my career in the United States Air Force. I have to say, I am excited for the prospect of being a civilian again. While I do not regret my time in the military, it is certainly time for something new. So, what is next? Well, I have been debating between majoring in CS or Physics. I am...]]></description>
		<pubDate>Sun, 21 Aug 2011 11:26:00 +0000</pubDate>
		<guid>http://www.dreamincode.net/forums/blog/801/entry-3660-a-new-chapter/</guid>
	</item>
	<item>
		<title>Sci-Fi Catalog v2.0</title>
		<link>http://www.dreamincode.net/forums/blog/801/entry-2917-sci-fi-catalog-v20/</link>
		<category></category>
		<description><![CDATA[I have just completed my second version of this program, including many improvements. I included the source in a comment to the original blog post. Please feel free to try it out and let me know what you think. Enjoy and Happy Coding!<br /><br />Original Blog Post -&gt; <a href='http://www.dreamincode.net/forums/blog/801/entry-2867-a-new-project-sci-fi-novel-cataloging-program/' class='bbc_url' title='External link' rel='nofollow external'>http://www.dreaminco...loging-program/</a>]]></description>
		<pubDate>Tue, 12 Oct 2010 01:59:00 +0000</pubDate>
		<guid>http://www.dreamincode.net/forums/blog/801/entry-2917-sci-fi-catalog-v20/</guid>
	</item>
	<item>
		<title>A new project: Sci-Fi Novel Cataloging program</title>
		<link>http://www.dreamincode.net/forums/blog/801/entry-2867-a-new-project-sci-fi-novel-cataloging-program/</link>
		<category></category>
		<description><![CDATA[Good Morning DIC<br /><br />I recently returned from my vacation to home. While home, I spent some time thinking about my next project. I wanted to create something practical, that I could evolve into something useful. I noticed that my father has his science fiction collection scattered across many shelves, with no rational order made obvious. I also enjoy...]]></description>
		<pubDate>Fri, 10 Sep 2010 10:32:00 +0000</pubDate>
		<guid>http://www.dreamincode.net/forums/blog/801/entry-2867-a-new-project-sci-fi-novel-cataloging-program/</guid>
	</item>
	<item>
		<title>Introduction to Abstraction</title>
		<link>http://www.dreamincode.net/forums/blog/801/entry-2710-introduction-to-abstraction/</link>
		<category></category>
		<description><![CDATA[This entry is designed to give a basic overview of one of the many uses of Abstraction. By designing your program to take advantage of abstraction, you are decreasing the amount of overhead by "hiding" implementation. I will use a purely logical example to illustrate this point. <br /><br />You have an office building with many different...]]></description>
		<pubDate>Wed, 07 Jul 2010 08:48:00 +0000</pubDate>
		<guid>http://www.dreamincode.net/forums/blog/801/entry-2710-introduction-to-abstraction/</guid>
	</item>
	<item>
		<title>Inheritence Pt. 2</title>
		<link>http://www.dreamincode.net/forums/blog/801/entry-2585-inheritence-pt-2/</link>
		<category></category>
		<description><![CDATA[In my last post I began introducing Inheritence. You will notice that in my last entry that all derived classes inherited as follows; <br /><br /><pre class='prettyprint '>class Derived : public Base</pre><br /><br />Notice the <pre class='prettyprint '>public</pre>...]]></description>
		<pubDate>Sat, 15 May 2010 02:22:00 +0000</pubDate>
		<guid>http://www.dreamincode.net/forums/blog/801/entry-2585-inheritence-pt-2/</guid>
	</item>
	<item>
		<title>Inheritence Pt. 1</title>
		<link>http://www.dreamincode.net/forums/blog/801/entry-2570-inheritence-pt-1/</link>
		<category></category>
		<description>Inheritence allows our data structures to inherit certain member variables from a Base/Parent structure. In this entry I will only use public accessors, we will keep the topic of protected and private accessors for a later entry. When you build and run this program, you will notice the order in which output occurs. When we initialize our...</description>
		<pubDate>Tue, 11 May 2010 09:15:00 +0000</pubDate>
		<guid>http://www.dreamincode.net/forums/blog/801/entry-2570-inheritence-pt-1/</guid>
	</item>
	<item>
		<title>Composition</title>
		<link>http://www.dreamincode.net/forums/blog/801/entry-2544-composition/</link>
		<category></category>
		<description><![CDATA[When creating classes, we aim to have each class perform one function. For more complex problems, one solution is to use composition. I use the ol' computer example. A computer performs many operations. It directs the flow of data, saves and retrieves data, provides a UI for input/output. Instead of writing one giant class for handling all of...]]></description>
		<pubDate>Fri, 07 May 2010 07:35:00 +0000</pubDate>
		<guid>http://www.dreamincode.net/forums/blog/801/entry-2544-composition/</guid>
	</item>
	<item>
		<title>Queues</title>
		<link>http://www.dreamincode.net/forums/blog/801/entry-2523-queues/</link>
		<category></category>
		<description>A couple of entries ago I began to talk about Stacks. A slightly more difficult topic involves Queues. Where in a stack, data is incremented from the back and removed from the back, a queue adds data to the back and removes it from the front. Below is an example of a queue, documented throughout. If there are any questions feel free to PM or...</description>
		<pubDate>Sun, 02 May 2010 03:37:00 +0000</pubDate>
		<guid>http://www.dreamincode.net/forums/blog/801/entry-2523-queues/</guid>
	</item>
	<item>
		<title>Linked List</title>
		<link>http://www.dreamincode.net/forums/blog/801/entry-2517-linked-list/</link>
		<category></category>
		<description><![CDATA[I have recently been experimenting with Linked Lists. The code being posted below is very simple, but demonstrates how one might create a Linked List and utilize a very basic implementation. Enjoy and happy coding. <br /><br /><pre class='prettyprint '>...</pre>]]></description>
		<pubDate>Sat, 01 May 2010 00:27:00 +0000</pubDate>
		<guid>http://www.dreamincode.net/forums/blog/801/entry-2517-linked-list/</guid>
	</item>
	<item>
		<title>Copy Constructors and playing with objects</title>
		<link>http://www.dreamincode.net/forums/blog/801/entry-2469-copy-constructors-and-playing-with-objects/</link>
		<category></category>
		<description>Now that a few entries have been posted in regards to OOP we can move on to the topic of copy constuctors. Say we would like to create a bit-wise copy of an object, while performing operations on the copy and keeping the original object intact? This is exactly what our copy constructor will do. Below is a snippet of code that I hope you will find...</description>
		<pubDate>Fri, 23 Apr 2010 05:32:00 +0000</pubDate>
		<guid>http://www.dreamincode.net/forums/blog/801/entry-2469-copy-constructors-and-playing-with-objects/</guid>
	</item>
</channel>
</rss>