2013年2月2日

C++ load shared library

摘要: http://pocoproject.org/docs/Poco.SharedLibrary.htmlhttp://pocoproject.org/slides/120-SharedLibraries.pdfhttp://www.ros.org/wiki/class_loaderhttp://www.ros.org/wiki/pluginlibhttp://boost-extension.redshoelace.com/docs/boost/extension/index.htmlhttp://src.chromium.org/chrome/trunk/src/base/native_libr 阅读全文

posted @ 2013-02-02 22:37 androidme 阅读(297) 评论(0) 推荐(0) 编辑

Poco C++ Library

摘要: http://pocoproject.org/http://pocoproject.com/ 阅读全文

posted @ 2013-02-02 22:13 androidme 阅读(216) 评论(0) 推荐(0) 编辑

C++: Static Class Definition

摘要: In C++, the static specifier is only meaningful when applied on functions and variables. But surprisingly, C++ allows static to be used on a class definition:static class Car{ int _speed;};This specifier is useless on the class definition since it does not mean anything! This compiles successfull... 阅读全文

posted @ 2013-02-02 22:09 androidme 阅读(409) 评论(0) 推荐(0) 编辑

导航