2006-08-23から1日間の記事一覧

続 CRTPと__declspec(dllexport)

iterator_facadeにも同じ問題を見つけたので、iterator_facadeを使った反復子をdllexportしている箇所を調べてみたところ、Boost.Signalsにありました。 #if BOOST_WORKAROUND(_MSC_VER, <= 1400) void decrement(); void advance(difference_type); #endif#…

Boost.Coroutineでスクリプト

yotto-kさんのLuaサンプルをBoost.Coroutineでやってみました。 http://www12.ocn.ne.jp/~dante98/src/non_visual_novel.cpp スクリプト部分はほぼ同じように書けます。 void main() { msg("まってくださいませ。"); int count = 0; while (true) { ++count;…