abstract 必要なヘッダ <boost/python.hpp> 出来ること C++からPython / PythonからC++を使うための補助フレームワーク リファレンス en / jp sample 1 (C++からPythonインタプリタを使う) サンプルの動作確認バージョン [GCC4.4/1.41.0] [VC9/1.41.0] #define BOOST_PYTHON_STATIC_LIB //← Boost.Pythonを静的リンクする場合。 // これなしだとBoost.PythonのDLLに依存した実行ファイルになります #include <iostream> #include <boost/python.hpp> using namespace std; // てきとーな関数 int cppFun( int x ) { cout << "Inside C++" <<