クラスオブジェクトを削除しようとしていますlist<boost::any> l
l.remove(class_type);
このようなものをメンバー関数として書いてみました
bool operator == (const class_type &a) const //not sure about the arguments
{
//return bool value
}
の std::list から class のオブジェクトを削除するオーバーロード関数をどのように記述しますboost::any
か?