<?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>Persistent notes &#187; stl</title>
	<atom:link href="http://alexkr.com/tag/stl/feed/" rel="self" type="application/rss+xml" />
	<link>http://alexkr.com</link>
	<description>Alexander Krivutsenko&#039;s online journal</description>
	<lastBuildDate>Fri, 01 Oct 2010 08:16:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to support std::endl</title>
		<link>http://alexkr.com/posts/100/how-to-support-stdendl/</link>
		<comments>http://alexkr.com/posts/100/how-to-support-stdendl/#comments</comments>
		<pubDate>Fri, 20 Apr 2007 14:43:59 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[short]]></category>
		<category><![CDATA[cpp]]></category>
		<category><![CDATA[stl]]></category>

		<guid isPermaLink="false">http://alexkr.com/posts/100/how-to-support-stdendl/</guid>
		<description><![CDATA[For the customized stream class it might be useful.
If you are making a customized stream class you might think that supporting standard


 std::endl
 std::flush


is essential.
The following fragment shows how to implement this feature.


#include &#60;iostream&#62;
using namespace std;
typedef std::ostream&#038; (*Manipulator)(std::ostream&#038;);
class mystream{
public:
        mystream &#038; operator &#60;&#60;(const std::string &#038;str){
    [...]]]></description>
		<wfw:commentRss>http://alexkr.com/posts/100/how-to-support-stdendl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting STL ANSI string to UNICODE string</title>
		<link>http://alexkr.com/posts/44/converting-stl-ansi-string-to-unicode-string/</link>
		<comments>http://alexkr.com/posts/44/converting-stl-ansi-string-to-unicode-string/#comments</comments>
		<pubDate>Wed, 01 Mar 2006 11:25:22 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[short]]></category>
		<category><![CDATA[cpp]]></category>
		<category><![CDATA[stl]]></category>
		<category><![CDATA[unicode]]></category>

		<guid isPermaLink="false">http://alexkr.com/c/44/converting-stl-ansi-string-to-unicode-string/</guid>
		<description><![CDATA[STL has string class for ANSI strings and wstring class for UNICODE strings]]></description>
		<wfw:commentRss>http://alexkr.com/posts/44/converting-stl-ansi-string-to-unicode-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Effective STL in example</title>
		<link>http://alexkr.com/posts/39/effective-stl-in-example/</link>
		<comments>http://alexkr.com/posts/39/effective-stl-in-example/#comments</comments>
		<pubDate>Thu, 09 Feb 2006 18:10:41 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[short]]></category>
		<category><![CDATA[cpp]]></category>
		<category><![CDATA[stl]]></category>

		<guid isPermaLink="false">http://alexkr.com/c/39/effective-stl-in-example/</guid>
		<description><![CDATA[Very nice STL article ]]></description>
		<wfw:commentRss>http://alexkr.com/posts/39/effective-stl-in-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

