<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/Lythm" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/Lythm" type="application/rss+xml"></fs:self_link><lastBuildDate>Mon, 30 Apr 2007 00:07:00 GMT</lastBuildDate><title>Lythm的专栏</title><link>http://blog.csdn.net/lythm/</link><item><title>Editplus中使用lua编译器的输出来定位出错行的正则表达式</title><link>http://blog.csdn.net/Lythm/archive/2007/04/30/1592416.aspx</link><wfw:comment>http://blog.csdn.net/lythm/comments/1592416.aspx</wfw:comment><slash:comments>2</slash:comments><wfw:commentRss>http://blog.csdn.net/lythm/comments/commentRss/1592416.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1592416</trackback:ping><description>在editplus中的自定义Tool里面使用lua编译器来做lua语法检查的时候， 出错的输出会输出到Output窗口，如果没有设置 output pattern的话， 双击错误信息是不会自动跳转到出错行的。&lt;img src =&quot;http://blog.csdn.net/lythm/aggbug/1592416.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 30 Apr 2007 08:07:00 +0800</pubDate><author>Lythm</author><comments>http://blog.csdn.net/Lythm/archive/2007/04/30/1592416.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/Lythm/archive/2007/04/30/1592416.aspx</guid><dc:creator>Lythm</dc:creator></item><item><title>C++ Boost 之Python(生成一个扩展模块)</title><link>http://blog.csdn.net/Lythm/archive/2003/07/21/4346.aspx</link><wfw:comment>http://blog.csdn.net/lythm/comments/4346.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lythm/comments/commentRss/4346.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4346</trackback:ping><description>Boost的Build过程,就想大家希望的那样,正在经历一些演化和改进.下面的一些事实可能会有帮助: 

&lt;img src =&quot;http://blog.csdn.net/lythm/aggbug/4346.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 21 Jul 2003 16:15:00 +0800</pubDate><author>Lythm</author><comments>http://blog.csdn.net/Lythm/archive/2003/07/21/4346.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/Lythm/archive/2003/07/21/4346.aspx</guid><dc:creator>Lythm</dc:creator></item><item><title>C++ Boost 之Python(一个简单的例子)</title><link>http://blog.csdn.net/Lythm/archive/2003/07/21/4344.aspx</link><wfw:comment>http://blog.csdn.net/lythm/comments/4344.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lythm/comments/commentRss/4344.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4344</trackback:ping><description>假设我们有下面的C++ API需要暴露给Python: 

#include 

namespace { // Avoid cluttering the global namespace.

  // A couple of simple C++ functions that we want to expose to Python.
  std::string greet() { return &quot;hello, world&quot;; }
  int square(int number) { return number * number; }
}

这就是要暴露API给Python的getting_started1模块的C++源代码. 

&lt;img src =&quot;http://blog.csdn.net/lythm/aggbug/4344.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 21 Jul 2003 16:15:00 +0800</pubDate><author>Lythm</author><comments>http://blog.csdn.net/Lythm/archive/2003/07/21/4344.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/Lythm/archive/2003/07/21/4344.aspx</guid><dc:creator>Lythm</dc:creator></item><item><title>C++ Boost 之Python(继承)</title><link>http://blog.csdn.net/Lythm/archive/2003/07/21/4345.aspx</link><wfw:comment>http://blog.csdn.net/lythm/comments/4345.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lythm/comments/commentRss/4345.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4345</trackback:ping><description>用Boost.Python扩展的类在Python中支持单继承和多继承.你可以在派生类中任意地混合内建Python类和扩展类.只要Boost.Python 扩展类是在Python中新的类的基类中, 那么结果就是一个扩展的类: 

&lt;img src =&quot;http://blog.csdn.net/lythm/aggbug/4345.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 21 Jul 2003 16:14:00 +0800</pubDate><author>Lythm</author><comments>http://blog.csdn.net/Lythm/archive/2003/07/21/4345.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/Lythm/archive/2003/07/21/4345.aspx</guid><dc:creator>Lythm</dc:creator></item><item><title>C++ Boost 之Lexical_cast</title><link>http://blog.csdn.net/Lythm/archive/2003/07/21/4342.aspx</link><wfw:comment>http://blog.csdn.net/lythm/comments/4342.aspx</wfw:comment><slash:comments>2</slash:comments><wfw:commentRss>http://blog.csdn.net/lythm/comments/commentRss/4342.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4342</trackback:ping><description>在很多时候我们必须要把一个值转成字符,就像int表现为一个string,或者相反,一个string被解释成一个int. 当需要在程序内部或者程序外部将数据在各种类型之间转换的时候这样的例子很常见,比如windows和配置文件. &lt;img src =&quot;http://blog.csdn.net/lythm/aggbug/4342.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 21 Jul 2003 16:14:00 +0800</pubDate><author>Lythm</author><comments>http://blog.csdn.net/Lythm/archive/2003/07/21/4342.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/Lythm/archive/2003/07/21/4342.aspx</guid><dc:creator>Lythm</dc:creator></item><item><title>C++ Boost 之Python(大纲)</title><link>http://blog.csdn.net/Lythm/archive/2003/07/21/4343.aspx</link><wfw:comment>http://blog.csdn.net/lythm/comments/4343.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lythm/comments/commentRss/4343.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4343</trackback:ping><description>用 Boost Python 库来快速简单的将C++程序库输出到Python,这样Python接口就和C++接口非常相似了.这个库是为了最低限度的影响你的 C++设计而设计的.大多数情况下,你不需要被迫修改你的C++类,以便它们能够和 Boost.Python库一起使用.系统将会简单地将你的C++类和函数''反射''到Python. Boost.Python库包括的主要特征有: 

&lt;img src =&quot;http://blog.csdn.net/lythm/aggbug/4343.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 21 Jul 2003 16:14:00 +0800</pubDate><author>Lythm</author><comments>http://blog.csdn.net/Lythm/archive/2003/07/21/4343.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/Lythm/archive/2003/07/21/4343.aspx</guid><dc:creator>Lythm</dc:creator></item></channel></rss>
