<?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>Be lost in thought... &#187; boost</title>
	<atom:link href="http://nineye.net/blog/archives/tag/boost/feed" rel="self" type="application/rss+xml" />
	<link>http://nineye.net/blog</link>
	<description>Nineye's personal weblog!!!</description>
	<lastBuildDate>Mon, 30 Aug 2010 08:40:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>통합개발환경(Integrated Development Environment)설치</title>
		<link>http://nineye.net/blog/archives/451</link>
		<comments>http://nineye.net/blog/archives/451#comments</comments>
		<pubDate>Mon, 23 Feb 2009 19:20:15 +0000</pubDate>
		<dc:creator>Nineye</dc:creator>
				<category><![CDATA[development tools]]></category>
		<category><![CDATA[boost]]></category>
		<category><![CDATA[codeblock]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[loki]]></category>
		<category><![CDATA[loki_library]]></category>
		<category><![CDATA[mingw]]></category>
		<category><![CDATA[stl]]></category>

		<guid isPermaLink="false">http://nineye.net/blog/?p=451</guid>
		<description><![CDATA[자, 이제 앞 글(http://nineye.net/blog/archives/449)에서 나열한 것들을 설치해보자~~~
- mingw(http://www.mingw.org)
1. http://sourceforge.net/project/showfiles.php?group_id=2435 여기로 가서 mingw를 받자. 내가 받을 때의 버전은 5.1.3이었다. Automated MinGW Installer package가 있는데 그넘을 받자. 그리고 같이 있는 여러 tool들이 있는데 그중에서 mingw용 gdb를 받자. 대부분 Automated MinGW Installer package가 설치해 주는데 gdb는 설치안해 준다는&#8230;
2. 아마 그냥 설치파일로 설치하면 될거다. 일단 나는 c:/mingw 아래에 설치하였다.
- stlport, [...]]]></description>
		<wfw:commentRss>http://nineye.net/blog/archives/451/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>boost python exposing function overloading</title>
		<link>http://nineye.net/blog/archives/429</link>
		<comments>http://nineye.net/blog/archives/429#comments</comments>
		<pubDate>Mon, 23 Feb 2009 18:47:15 +0000</pubDate>
		<dc:creator>Nineye</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[boost]]></category>
		<category><![CDATA[overloading]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://nineye.net/blog/?p=429</guid>
		<description><![CDATA[- C++의 overloading function들을 python에서 어떻게 호출할 것인지&#8230;
 

class haha {
    ...
    int read(thNodeRecL&#38; obj, int mapid, int nodeid, int rank);
    int read(thLinkRecL&#38; obj, int mapid, int linkid, int rank);
    ...
};

 
이런 class가 있다면
 


class_&#60; thMRReaderL&#60;&#62; &#62;(&#34;thMRReaderL&#34;)
    // Add a regular member function.
    ...
    .def(&#34;read&#34;, (int (thMRReaderL&#60;&#62;::*)(thNodeRecL&#38;, int, int, int))(&#38;thMRReaderL&#60;&#62;::read))
    .def(&#34;read&#34;, (int (thMRReaderL&#60;&#62;::*)(thLinkRecL&#38;, int, int, int))(&#38;thMRReaderL&#60;&#62;::read))
    ...
;


 
 
이렇게 만들어 [...]]]></description>
		<wfw:commentRss>http://nineye.net/blog/archives/429/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>boost python &#8211; export template function and class</title>
		<link>http://nineye.net/blog/archives/427</link>
		<comments>http://nineye.net/blog/archives/427#comments</comments>
		<pubDate>Mon, 23 Feb 2009 18:46:09 +0000</pubDate>
		<dc:creator>Nineye</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[boost]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://nineye.net/blog/?p=427</guid>
		<description><![CDATA[필자가 c++ template을 즐겨 쓰다보니, c++소스와 python의 연동에서 template은 python에서 어떻게 처리해야 하는지 찾아보다가, 잘 설명되어 있는 글이 있어서 첨부한다.

How to automatically export template functions\class?
Lets say you have next C++ function:

// file point.h
namespace geometry{
    template&#60; class T&#62;
    struct point_t{
        T x, y;
 [...]]]></description>
		<wfw:commentRss>http://nineye.net/blog/archives/427/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>boost python build</title>
		<link>http://nineye.net/blog/archives/423</link>
		<comments>http://nineye.net/blog/archives/423#comments</comments>
		<pubDate>Mon, 23 Feb 2009 18:41:53 +0000</pubDate>
		<dc:creator>Nineye</dc:creator>
				<category><![CDATA[development tools]]></category>
		<category><![CDATA[boost]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://nineye.net/blog/?p=423</guid>
		<description><![CDATA[boost python 사용하기&#8230;
 
준비물
모든 참조는 여기서&#8230; http://www.boost.org
boost C++ library download&#8230; http://sourceforge.net/project/showfiles.php?group_id=7586
 &#8211; 다른 건 필요없고 boost 전체 패키지만 받으면 그 안에 다 있음&#8230;
python library download&#8230; http://www.python.org 페이지의 download메뉴 누르면 있음&#8230;
시작하자!!
windows용 VC6.0용 빌드&#8230;
1. 우선 python을 설치한다. 현재 버전은 2.5.1버전이다.
2. boost library를 생성할 환경에 맞게 세팅해 주는 bjam.exe를 생성한다.
 &#8211; $boostDir/tools/jam/src/build.bat 파일을 실행해 주는데 인자가 없으면 현 [...]]]></description>
		<wfw:commentRss>http://nineye.net/blog/archives/423/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
