ブースト信号を使用するこの C++ コードを見つけたので、それを理解しようとしています。
// A boost::signal wrapper structure
template <typename Signature>
struct SignalBase : public boost::noncopyable
{
typedef boost::function_traits< Signature > SignatureTraits;
typedef boost::signal<Signature> SignalType;
typedef typename SignalType::slot_function_type SlotFunctionType;
typedef typename SignalType::result_type ResultType;
typedef boost::signals::connection ConnectionType;
SignalBase() : m_signal() {};
virtual ~SignalBase() {};
protected:
SignalType m_signal;
};
// I use a specialization of this template for an arity of 1.
// The template generates the correct function call operator for the arity of the signal.
template<int Arity, typename Signature>
struct SelArity : public SignalBase<Signature> {};
// Specialization
template<typename Signature>
struct SelArity< 1, Signature> : public SignalBase<Signature>
{
typedef SignalBase<Signature> BaseType;
inline typename BaseType::ResultType operator()(typename BaseType::SignatureTraits::arg1_type arg )
{
return BaseType::m_signal( arg );
}
};
どのSelArity
ファンクターが返されるのかわかりません。私が理解している限り、署名付きのm_signal
関数に接続できるシグナルを宣言できるタイプです。Signature
どのようにして型をパラメーターとして持つことができますか?( を参照return BaseType::m_signal( arg );
) によって表される型は何ResultType
ですか? SelArity
そして、ファンクターによって返されたオブジェクトをどのように使用できますか?