C++ 信号槽实现sigslot库(不使用QT框架)

SIGSLOT库很简单就一个文件,以下是使用简单的方法:

1、没有参数

signal0<> m_sigSdkInit;信号参数初始化

m_sigSdkInit.connect(this,&类名::SdkLoadingSlot); 信号槽建立连接

m_sigSdkInit.emit();触发方法

2、带一个参数

signal0<int> m_sigSdkInit;信号参数初始化

m_sigSdkInit.connect(this,&类名::SdkLoadingSlot); 信号槽建立连接

m_sigSdkInit.emit(5);触发方法

3、带两个参数

signal0<string,int> m_sigSdkInit;信号参数初始化

m_sigSdkInit.connect(this,&类名::SdkLoadingSlot); 信号槽建立连接

m_sigSdkInit.emit("123",5);触发方法

其他类似...  有不懂用的 可以私信交流

直接下载的sigslot库再使用时可能会报一堆错误,大家可以使用如下代码:

// sigslot.h: Signal/Slot classes
//
// Written by Sarah Thompson (sarah@telergy.com) 2002.
//
// License: Public domain. You are free to use this code however you like, with the proviso that
//          the author takes on no responsibility or liability for any use.
//
// QUICK DOCUMENTATION
//
//              (see also the full documentation at http://sigslot.sourceforge.net/)
//
//      #define switches
//          SIGSLOT_PURE_ISO            - Define this to force ISO C++ compliance. This also disables
//                                        all of the thread safety support on platforms where it is
//                                        available.
//
//          SIGSLOT_USE_POSIX_THREADS   - Force use of Posix threads when using a C++ compiler other than
//                                        gcc on a platform that supports Posix threads. (When using gcc,
//                                        this is the default - use SIGSLOT_PURE_ISO to disable this if
//                                        necessary)
//
//          SIGSLOT_DEFAULT_MT_POLICY   - Where thread support is enabled, this defaults to multi_threaded_global.
//                                        Otherwise, the default is single_threaded. #define this yourself to
//                                        override the default. In pure ISO mode, anything other than
//                                        single_threaded will cause a compiler error.
//
//      PLATFORM NOTES
//
//          Win32                       - On Win32, the WIN32 symbol must be #defined. Most mainstream
//                                        compilers do this by default, but you may need to define it
//                                        yourself if your build environment is less standard. This causes
//                                        the Win32 thread support to be compiled in and used automatically.
//
//          Unix/Linux/BSD, etc.        - If you're using gcc, it is assumed that you have Posix threads
//                                        available, so they are used automatically. You can override this
//                                        (as under Windows) with the SIGSLOT_PURE_ISO switch. If you're using
//                                        something other than gcc but still want to use Posix threads, you
//                                        need to #define SIGSLOT_USE_POSIX_THREADS.
//
//          ISO C++                     - If none of the supported platforms are detected, or if
//                                        SIGSLOT_PURE_ISO is defined, all multithreading support is turned off,
//                                        along with any code that might cause a pure ISO C++ environment to
//                                        complain. Before you ask, gcc -ansi -pedantic won't compile this
//                                        library, but gcc -ansi is fine. Pedantic mode seems to throw a lot of
//                                        errors that aren't really there. If you feel like investigating this,
//                                        please contact the author.
//
//
//      THREADING MODES
//
//          single_threaded             - Your program is assumed to be single threaded from the point of view
//                                        of signal/slot usage (i.e. all objects using signals and slots are
//                                        created and destroyed from a single thread). Behaviour if objects are
//                                        destroyed concurrently is undefined (i.e. you'll get the occasional
//                                        segmentation fault/memory exception).
//
//          multi_threaded_global       - Your program is assumed to be multi threaded. Objects using signals and
//                                        slots can be safely created and destroyed from any thread, even when
//                                        connections exist. In multi_threaded_global mode, this is achieved by a
//                                        single global mutex (actually a critical section on Windows because they
//                                        are faster). This option uses less OS resources, but results in more
//                                        opportunities for contention, possibly resulting in more context switches
//                                        than are strictly necessary.
//
//          multi_threaded_local        - Behaviour in this mode is essentially the same as multi_threaded_global,
//                                        except that each signal, and each object that inherits has_slots, all
//                                        have their own mutex/critical section. In practice, this means that
//                                        mutex collisions (and hence context switches) only happen if they are
//                                        absolutely essential. However, on some platforms, creating a lot of
//                                        mutexes can slow down the whole OS, so use this option with care.
//
//      USING THE LIBRARY
//
//          See the full documentation at http://sigslot.sourceforge.net/
//
//
// Libjingle specific:
// This file has been modified such that has_slots and signalx do not have to be
// using the same threading requirements. E.g. it is possible to connect a
// has_slots<single_threaded> and signal0<multi_threaded_local> or
// has_slots<multi_threaded_local> and signal0<single_threaded>.
// If has_slots is single threaded the user must ensure that it is not trying
// to connect or disconnect to signalx concurrently or data race may occur.
// If signalx is single threaded the user must ensure that disconnect, connect
// or signal is not happening concurrently or data race may occur.

#ifndef _SIGSLOT_H__
#define _SIGSLOT_H__

#include <list>
#include <set>
#include <stdlib.h>

// On our copy of sigslot.h, we set single threading as default.
#define SIGSLOT_DEFAULT_MT_POLICY single_threaded

#if defined(SIGSLOT_PURE_ISO) || (!defined(WIN32) && !defined(__GNUG__) && !defined(SIGSLOT_USE_POSIX_THREADS))
#   define _SIGSLOT_SINGLE_THREADED
#elif defined(WIN32)
#   define _SIGSLOT_HAS_WIN32_THREADS
#   if !defined(WIN32_LEAN_AND_MEAN)
#       define WIN32_LEAN_AND_MEAN
#   endif
#   include <windows.h>
#elif defined(__GNUG__) || defined(SIGSLOT_USE_POSIX_THREADS)
#   define _SIGSLOT_HAS_POSIX_THREADS
#   include <pthread.h>
#else
#   define _SIGSLOT_SINGLE_THREADED
#endif

#ifndef SIGSLOT_DEFAULT_MT_POLICY
#   ifdef _SIGSLOT_SINGLE_THREADED
#       define SIGSLOT_DEFAULT_MT_POLICY single_threaded
#   else
#       define SIGSLOT_DEFAULT_MT_POLICY multi_threaded_local
#   endif
#endif

// TODO: change this namespace to talk_base?
namespace sigslot {

    class single_threaded
    {
    public:
        single_threaded()
        {
            ;
        }

        virtual ~single_threaded()
        {
            ;
        }

        virtual void lock()
        {
            ;
        }

        virtual void unlock()
        {
            ;
        }
    };

#ifdef _SIGSLOT_HAS_WIN32_THREADS
    // The multi threading policies only get compiled in if they are enabled.
    class multi_threaded_global
    {
    public:
        multi_threaded_global()
        {
            static bool isinitialised = false;

            if (!isinitialised)
            {
                InitializeCriticalSection(get_critsec());
                isinitialised = true;
            }
        }

        multi_threaded_global(const multi_threaded_global&)
        {
            ;
        }

        virtual ~multi_threaded_global()
        {
            ;
        }

        virtual void lock()
        {
            EnterCriticalSection(get_critsec());
        }

        virtual void unlock()
        {
            LeaveCriticalSection(get_critsec());
        }

    private:
        CRITICAL_SECTION* get_critsec()
        {
            static CRITICAL_SECTION g_critsec;
            return &g_critsec;
        }
    };

    class multi_threaded_local
    {
    public:
        multi_threaded_local()
        {
            InitializeCriticalSection(&m_critsec);
        }

        multi_threaded_local(const multi_threaded_local&)
        {
            InitializeCriticalSection(&m_critsec);
        }

        virtual ~multi_threaded_local()
        {
            DeleteCriticalSection(&m_critsec);
        }

        virtual void lock()
        {
            EnterCriticalSection(&m_critsec);
        }

        virtual void unlock()
        {
            LeaveCriticalSection(&m_critsec);
        }

    private:
        CRITICAL_SECTION m_critsec;
    };
#endif // _SIGSLOT_HAS_WIN32_THREADS

#ifdef _SIGSLOT_HAS_POSIX_THREADS
    // The multi threading policies only get compiled in if they are enabled.
    class multi_threaded_global
    {
    public:
        multi_threaded_global()
        {
            pthread_mutex_init(get_mutex(), NULL);
        }

        multi_threaded_global(const multi_threaded_global&)
        {
            ;
        }

        virtual ~multi_threaded_global()
        {
            ;
        }

        virtual void lock()
        {
            pthread_mutex_lock(get_mutex());
        }

        virtual void unlock()
        {
            pthread_mutex_unlock(get_mutex());
        }

    private:
        pthread_mutex_t* get_mutex()
        {
            static pthread_mutex_t g_mutex;
            return &g_mutex;
        }
    };

    class multi_threaded_local
    {
    public:
        multi_threaded_local()
        {
            pthread_mutex_init(&m_mutex, NULL);
        }

        multi_threaded_local(const multi_threaded_local&)
        {
            pthread_mutex_init(&m_mutex, NULL);
        }

        virtual ~multi_threaded_local()
        {
            pthread_mutex_destroy(&m_mutex);
        }

        virtual void lock()
        {
            pthread_mutex_lock(&m_mutex);
        }

        virtual void unlock()
        {
            pthread_mutex_unlock(&m_mutex);
        }

    private:
        pthread_mutex_t m_mutex;
    };
#endif // _SIGSLOT_HAS_POSIX_THREADS

    template<class mt_policy>
    class lock_block
    {
    public:
        mt_policy *m_mutex;

        lock_block(mt_policy *mtx)
            : m_mutex(mtx)
        {
            m_mutex->lock();
        }

        ~lock_block()
        {
            m_mutex->unlock();
        }
    };

    class has_slots_interface;

    template<class mt_policy>
    class _connection_base0
    {
    public:
        virtual ~_connection_base0() {}
        virtual has_slots_interface* getdest() const = 0;
        virtual void emit() = 0;
        virtual _connection_base0* clone() = 0;
        virtual _connection_base0* duplicate(has_slots_interface* pnewdest) = 0;
    };

    template<class arg1_type, class mt_policy>
    class _connection_base1
    {
    public:
        virtual ~_connection_base1() {}
        virtual has_slots_interface* getdest() const = 0;
        virtual void emit(arg1_type) = 0;
        virtual _connection_base1<arg1_type, mt_policy>* clone() = 0;
        virtual _connection_base1<arg1_type, mt_policy>* duplicate(has_slots_interface* pnewdest) = 0;
    };

    template<class arg1_type, class arg2_type, class mt_policy>
    class _connection_base2
    {
    public:
        virtual ~_connection_base2() {}
        virtual has_slots_interface* getdest() const = 0;
        virtual void emit(arg1_type, arg2_type) = 0;
        virtual _connection_base2<arg1_type, arg2_type, mt_policy>* clone() = 0;
        virtual _connection_base2<arg1_type, arg2_type, mt_policy>* duplicate(has_slots_interface* pnewdest) = 0;
    };

    template<class arg1_type, class arg2_type, class arg3_type, class mt_policy>
    class _connection_base3
    {
    public:
        virtual ~_connection_base3() {}
        virtual has_slots_interface* getdest() const = 0;
        virtual void emit(arg1_type, arg2_type, arg3_type) = 0;
        virtual _connection_base3<arg1_type, arg2_type, arg3_type, mt_policy>* clone() = 0;
        virtual _connection_base3<arg1_type, arg2_type, arg3_type, mt_policy>* duplicate(has_slots_interface* pnewdest) = 0;
    };

    template<class arg1_type, class arg2_type, class arg3_type, class arg4_type, class mt_policy>
    class _connection_base4
    {
    public:
        virtual ~_connection_base4() {}
        virtual has_slots_interface* getdest() const = 0;
        virtual void emit(arg1_type, arg2_type, arg3_type, arg4_type) = 0;
        virtual _connection_base4<arg1_type, arg2_type, arg3_type, arg4_type, mt_policy>* clone() = 0;
        virtual _connection_base4<arg1_type, arg2_type, arg3_type, arg4_type, mt_policy>* duplicate(has_slots_interface* pnewdest) = 0;
    };

    template<class arg1_type, class arg2_type, class arg3_type, class arg4_type,
        class arg5_type, class mt_policy>
        class _connection_base5
    {
    public:
        virtual ~_connection_base5() {}
        virtual has_slots_interface* getdest() const = 0;
        virtual void emit(arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type) = 0;
        virtual _connection_base5<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, mt_policy>* clone() = 0;
        virtual _connection_base5<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, mt_policy>* duplicate(has_slots_interface* pnewdest) = 0;
    };

    template<class arg1_type, class arg2_type, class arg3_type, class arg4_type,
        class arg5_type, class arg6_type, class mt_policy>
        class _connection_base6
    {
    public:
        virtual ~_connection_base6() {}
        virtual has_slots_interface* getdest() const = 0;
        virtual void emit(arg1_type, arg2_type, arg3_type, arg4_type, arg5_type,
            arg6_type) = 0;
        virtual _connection_base6<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, mt_policy>* clone() = 0;
        virtual _connection_base6<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, mt_policy>* duplicate(has_slots_interface* pnewdest) = 0;
    };

    template<class arg1_type, class arg2_type, class arg3_type, class arg4_type,
        class arg5_type, class arg6_type, class arg7_type, class mt_policy>
        class _connection_base7
    {
    public:
        virtual ~_connection_base7() {}
        virtual has_slots_interface* getdest() const = 0;
        virtual void emit(arg1_type, arg2_type, arg3_type, arg4_type, arg5_type,
            arg6_type, arg7_type) = 0;
        virtual _connection_base7<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, arg7_type, mt_policy>* clone() = 0;
        virtual _connection_base7<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, arg7_type, mt_policy>* duplicate(has_slots_interface* pnewdest) = 0;
    };

    template<class arg1_type, class arg2_type, class arg3_type, class arg4_type,
        class arg5_type, class arg6_type, class arg7_type, class arg8_type, class mt_policy>
        class _connection_base8
    {
    public:
        virtual ~_connection_base8() {}
        virtual has_slots_interface* getdest() const = 0;
        virtual void emit(arg1_type, arg2_type, arg3_type, arg4_type, arg5_type,
            arg6_type, arg7_type, arg8_type) = 0;
        virtual _connection_base8<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, arg7_type, arg8_type, mt_policy>* clone() = 0;
        virtual _connection_base8<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, arg7_type, arg8_type, mt_policy>* duplicate(has_slots_interface* pnewdest) = 0;
    };

    class _signal_base_interface
    {
    public:
        virtual void slot_disconnect(has_slots_interface* pslot) = 0;
        virtual void slot_duplicate(const has_slots_interface* poldslot, has_slots_interface* pnewslot) = 0;
    };

    template<class mt_policy>
    class _signal_base : public _signal_base_interface, public mt_policy
    {
    };

    class has_slots_interface
    {
    public:
        has_slots_interface()
        {
            ;
        }

        virtual void signal_connect(_signal_base_interface* sender) = 0;

        virtual void signal_disconnect(_signal_base_interface* sender) = 0;

        virtual ~has_slots_interface()
        {
        }

        virtual void disconnect_all() = 0;
    };

    template<class mt_policy = SIGSLOT_DEFAULT_MT_POLICY>
    class has_slots : public has_slots_interface, public mt_policy
    {
    private:
        typedef std::set<_signal_base_interface*> sender_set;
        typedef sender_set::const_iterator const_iterator;

    public:
        has_slots()
        {
            ;
        }

        has_slots(const has_slots& hs)
        {
            lock_block<mt_policy> lock(this);
            const_iterator it = hs.m_senders.begin();
            const_iterator itEnd = hs.m_senders.end();

            while (it != itEnd)
            {
                (*it)->slot_duplicate(&hs, this);
                m_senders.insert(*it);
                ++it;
            }
        }

        void signal_connect(_signal_base_interface* sender)
        {
            lock_block<mt_policy> lock(this);
            m_senders.insert(sender);
        }

        void signal_disconnect(_signal_base_interface* sender)
        {
            lock_block<mt_policy> lock(this);
            m_senders.erase(sender);
        }

        virtual ~has_slots()
        {
            disconnect_all();
        }

        void disconnect_all()
        {
            lock_block<mt_policy> lock(this);
            const_iterator it = m_senders.begin();
            const_iterator itEnd = m_senders.end();

            while (it != itEnd)
            {
                (*it)->slot_disconnect(this);
                ++it;
            }

            m_senders.erase(m_senders.begin(), m_senders.end());
        }

    private:
        sender_set m_senders;
    };

    template<class mt_policy>
    class _signal_base0 : public _signal_base<mt_policy>
    {
    public:
        typedef std::list<_connection_base0<mt_policy> *>  connections_list;

        _signal_base0()
        {
            ;
        }

        _signal_base0(const _signal_base0& s)
            : _signal_base<mt_policy>(s)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = s.m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = s.m_connected_slots.end();

            while (it != itEnd)
            {
                (*it)->getdest()->signal_connect(this);
                m_connected_slots.push_back((*it)->clone());

                ++it;
            }
        }

        ~_signal_base0()
        {
            disconnect_all();
        }

        bool is_empty()
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();
            return it == itEnd;
        }

        void disconnect_all()
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                (*it)->getdest()->signal_disconnect(this);
                delete *it;

                ++it;
            }

            m_connected_slots.erase(m_connected_slots.begin(), m_connected_slots.end());
        }

#ifdef _DEBUG
        bool connected(has_slots_interface* pclass)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();
            while (it != itEnd)
            {
                itNext = it;
                ++itNext;
                if ((*it)->getdest() == pclass)
                    return true;
                it = itNext;
            }
            return false;
        }
#endif

        void disconnect(has_slots_interface* pclass)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                if ((*it)->getdest() == pclass)
                {
                    delete *it;
                    m_connected_slots.erase(it);
                    pclass->signal_disconnect(this);
                    return;
                }

                ++it;
            }
        }

        void slot_disconnect(has_slots_interface* pslot)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                typename connections_list::iterator itNext = it;
                ++itNext;

                if ((*it)->getdest() == pslot)
                {
                    delete *it;
                    m_connected_slots.erase(it);
                }

                it = itNext;
            }
        }

        void slot_duplicate(const has_slots_interface* oldtarget, has_slots_interface* newtarget)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                if ((*it)->getdest() == oldtarget)
                {
                    m_connected_slots.push_back((*it)->duplicate(newtarget));
                }

                ++it;
            }
        }

    protected:
        connections_list m_connected_slots;
    };

    template<class arg1_type, class mt_policy>
    class _signal_base1 : public _signal_base<mt_policy>
    {
    public:
        typedef std::list<_connection_base1<arg1_type, mt_policy> *>  connections_list;

        _signal_base1()
        {
            ;
        }

        _signal_base1(const _signal_base1<arg1_type, mt_policy>& s)
            : _signal_base<mt_policy>(s)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = s.m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = s.m_connected_slots.end();

            while (it != itEnd)
            {
                (*it)->getdest()->signal_connect(this);
                m_connected_slots.push_back((*it)->clone());

                ++it;
            }
        }

        void slot_duplicate(const has_slots_interface* oldtarget, has_slots_interface* newtarget)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                if ((*it)->getdest() == oldtarget)
                {
                    m_connected_slots.push_back((*it)->duplicate(newtarget));
                }

                ++it;
            }
        }

        ~_signal_base1()
        {
            disconnect_all();
        }

        bool is_empty()
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();
            return it == itEnd;
        }

        void disconnect_all()
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                (*it)->getdest()->signal_disconnect(this);
                delete *it;

                ++it;
            }

            m_connected_slots.erase(m_connected_slots.begin(), m_connected_slots.end());
        }

#ifdef _DEBUG
        bool connected(has_slots_interface* pclass)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();
            while (it != itEnd)
            {
                itNext = it;
                ++itNext;
                if ((*it)->getdest() == pclass)
                    return true;
                it = itNext;
            }
            return false;
        }
#endif

        void disconnect(has_slots_interface* pclass)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                if ((*it)->getdest() == pclass)
                {
                    delete *it;
                    m_connected_slots.erase(it);
                    pclass->signal_disconnect(this);
                    return;
                }

                ++it;
            }
        }

        void slot_disconnect(has_slots_interface* pslot)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                typename connections_list::iterator itNext = it;
                ++itNext;

                if ((*it)->getdest() == pslot)
                {
                    delete *it;
                    m_connected_slots.erase(it);
                }

                it = itNext;
            }
        }


    protected:
        connections_list m_connected_slots;
    };

    template<class arg1_type, class arg2_type, class mt_policy>
    class _signal_base2 : public _signal_base<mt_policy>
    {
    public:
        typedef std::list<_connection_base2<arg1_type, arg2_type, mt_policy> *>
            connections_list;

        _signal_base2()
        {
            ;
        }

        _signal_base2(const _signal_base2<arg1_type, arg2_type, mt_policy>& s)
            : _signal_base<mt_policy>(s)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = s.m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = s.m_connected_slots.end();

            while (it != itEnd)
            {
                (*it)->getdest()->signal_connect(this);
                m_connected_slots.push_back((*it)->clone());

                ++it;
            }
        }

        void slot_duplicate(const has_slots_interface* oldtarget, has_slots_interface* newtarget)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                if ((*it)->getdest() == oldtarget)
                {
                    m_connected_slots.push_back((*it)->duplicate(newtarget));
                }

                ++it;
            }
        }

        ~_signal_base2()
        {
            disconnect_all();
        }

        bool is_empty()
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();
            return it == itEnd;
        }

        void disconnect_all()
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                (*it)->getdest()->signal_disconnect(this);
                delete *it;

                ++it;
            }

            m_connected_slots.erase(m_connected_slots.begin(), m_connected_slots.end());
        }

#ifdef _DEBUG
        bool connected(has_slots_interface* pclass)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();
            while (it != itEnd)
            {
                itNext = it;
                ++itNext;
                if ((*it)->getdest() == pclass)
                    return true;
                it = itNext;
            }
            return false;
        }
#endif

        void disconnect(has_slots_interface* pclass)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                if ((*it)->getdest() == pclass)
                {
                    delete *it;
                    m_connected_slots.erase(it);
                    pclass->signal_disconnect(this);
                    return;
                }

                ++it;
            }
        }

        void slot_disconnect(has_slots_interface* pslot)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                typename connections_list::iterator itNext = it;
                ++itNext;

                if ((*it)->getdest() == pslot)
                {
                    delete *it;
                    m_connected_slots.erase(it);
                }

                it = itNext;
            }
        }

    protected:
        connections_list m_connected_slots;
    };

    template<class arg1_type, class arg2_type, class arg3_type, class mt_policy>
    class _signal_base3 : public _signal_base<mt_policy>
    {
    public:
        typedef std::list<_connection_base3<arg1_type, arg2_type, arg3_type, mt_policy> *>
            connections_list;

        _signal_base3()
        {
            ;
        }

        _signal_base3(const _signal_base3<arg1_type, arg2_type, arg3_type, mt_policy>& s)
            : _signal_base<mt_policy>(s)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = s.m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = s.m_connected_slots.end();

            while (it != itEnd)
            {
                (*it)->getdest()->signal_connect(this);
                m_connected_slots.push_back((*it)->clone());

                ++it;
            }
        }

        void slot_duplicate(const has_slots_interface* oldtarget, has_slots_interface* newtarget)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                if ((*it)->getdest() == oldtarget)
                {
                    m_connected_slots.push_back((*it)->duplicate(newtarget));
                }

                ++it;
            }
        }

        ~_signal_base3()
        {
            disconnect_all();
        }

        bool is_empty()
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();
            return it == itEnd;
        }

        void disconnect_all()
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                (*it)->getdest()->signal_disconnect(this);
                delete *it;

                ++it;
            }

            m_connected_slots.erase(m_connected_slots.begin(), m_connected_slots.end());
        }

#ifdef _DEBUG
        bool connected(has_slots_interface* pclass)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();
            while (it != itEnd)
            {
                itNext = it;
                ++itNext;
                if ((*it)->getdest() == pclass)
                    return true;
                it = itNext;
            }
            return false;
        }
#endif

        void disconnect(has_slots_interface* pclass)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                if ((*it)->getdest() == pclass)
                {
                    delete *it;
                    m_connected_slots.erase(it);
                    pclass->signal_disconnect(this);
                    return;
                }

                ++it;
            }
        }

        void slot_disconnect(has_slots_interface* pslot)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                typename connections_list::iterator itNext = it;
                ++itNext;

                if ((*it)->getdest() == pslot)
                {
                    delete *it;
                    m_connected_slots.erase(it);
                }

                it = itNext;
            }
        }

    protected:
        connections_list m_connected_slots;
    };

    template<class arg1_type, class arg2_type, class arg3_type, class arg4_type, class mt_policy>
    class _signal_base4 : public _signal_base<mt_policy>
    {
    public:
        typedef std::list<_connection_base4<arg1_type, arg2_type, arg3_type,
            arg4_type, mt_policy> *>  connections_list;

        _signal_base4()
        {
            ;
        }

        _signal_base4(const _signal_base4<arg1_type, arg2_type, arg3_type, arg4_type, mt_policy>& s)
            : _signal_base<mt_policy>(s)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = s.m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = s.m_connected_slots.end();

            while (it != itEnd)
            {
                (*it)->getdest()->signal_connect(this);
                m_connected_slots.push_back((*it)->clone());

                ++it;
            }
        }

        void slot_duplicate(const has_slots_interface* oldtarget, has_slots_interface* newtarget)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                if ((*it)->getdest() == oldtarget)
                {
                    m_connected_slots.push_back((*it)->duplicate(newtarget));
                }

                ++it;
            }
        }

        ~_signal_base4()
        {
            disconnect_all();
        }

        bool is_empty()
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();
            return it == itEnd;
        }

        void disconnect_all()
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                (*it)->getdest()->signal_disconnect(this);
                delete *it;

                ++it;
            }

            m_connected_slots.erase(m_connected_slots.begin(), m_connected_slots.end());
        }

#ifdef _DEBUG
        bool connected(has_slots_interface* pclass)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();
            while (it != itEnd)
            {
                itNext = it;
                ++itNext;
                if ((*it)->getdest() == pclass)
                    return true;
                it = itNext;
            }
            return false;
        }
#endif

        void disconnect(has_slots_interface* pclass)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                if ((*it)->getdest() == pclass)
                {
                    delete *it;
                    m_connected_slots.erase(it);
                    pclass->signal_disconnect(this);
                    return;
                }

                ++it;
            }
        }

        void slot_disconnect(has_slots_interface* pslot)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                typename connections_list::iterator itNext = it;
                ++itNext;

                if ((*it)->getdest() == pslot)
                {
                    delete *it;
                    m_connected_slots.erase(it);
                }

                it = itNext;
            }
        }

    protected:
        connections_list m_connected_slots;
    };

    template<class arg1_type, class arg2_type, class arg3_type, class arg4_type,
        class arg5_type, class mt_policy>
        class _signal_base5 : public _signal_base<mt_policy>
    {
    public:
        typedef std::list<_connection_base5<arg1_type, arg2_type, arg3_type,
            arg4_type, arg5_type, mt_policy> *>  connections_list;

        _signal_base5()
        {
            ;
        }

        _signal_base5(const _signal_base5<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, mt_policy>& s)
            : _signal_base<mt_policy>(s)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = s.m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = s.m_connected_slots.end();

            while (it != itEnd)
            {
                (*it)->getdest()->signal_connect(this);
                m_connected_slots.push_back((*it)->clone());

                ++it;
            }
        }

        void slot_duplicate(const has_slots_interface* oldtarget, has_slots_interface* newtarget)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                if ((*it)->getdest() == oldtarget)
                {
                    m_connected_slots.push_back((*it)->duplicate(newtarget));
                }

                ++it;
            }
        }

        ~_signal_base5()
        {
            disconnect_all();
        }

        bool is_empty()
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();
            return it == itEnd;
        }

        void disconnect_all()
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                (*it)->getdest()->signal_disconnect(this);
                delete *it;

                ++it;
            }

            m_connected_slots.erase(m_connected_slots.begin(), m_connected_slots.end());
        }

#ifdef _DEBUG
        bool connected(has_slots_interface* pclass)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();
            while (it != itEnd)
            {
                itNext = it;
                ++itNext;
                if ((*it)->getdest() == pclass)
                    return true;
                it = itNext;
            }
            return false;
        }
#endif

        void disconnect(has_slots_interface* pclass)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                if ((*it)->getdest() == pclass)
                {
                    delete *it;
                    m_connected_slots.erase(it);
                    pclass->signal_disconnect(this);
                    return;
                }

                ++it;
            }
        }

        void slot_disconnect(has_slots_interface* pslot)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                typename connections_list::iterator itNext = it;
                ++itNext;

                if ((*it)->getdest() == pslot)
                {
                    delete *it;
                    m_connected_slots.erase(it);
                }

                it = itNext;
            }
        }

    protected:
        connections_list m_connected_slots;
    };

    template<class arg1_type, class arg2_type, class arg3_type, class arg4_type,
        class arg5_type, class arg6_type, class mt_policy>
        class _signal_base6 : public _signal_base<mt_policy>
    {
    public:
        typedef std::list<_connection_base6<arg1_type, arg2_type, arg3_type,
            arg4_type, arg5_type, arg6_type, mt_policy> *>  connections_list;

        _signal_base6()
        {
            ;
        }

        _signal_base6(const _signal_base6<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, mt_policy>& s)
            : _signal_base<mt_policy>(s)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = s.m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = s.m_connected_slots.end();

            while (it != itEnd)
            {
                (*it)->getdest()->signal_connect(this);
                m_connected_slots.push_back((*it)->clone());

                ++it;
            }
        }

        void slot_duplicate(const has_slots_interface* oldtarget, has_slots_interface* newtarget)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                if ((*it)->getdest() == oldtarget)
                {
                    m_connected_slots.push_back((*it)->duplicate(newtarget));
                }

                ++it;
            }
        }

        ~_signal_base6()
        {
            disconnect_all();
        }

        bool is_empty()
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();
            return it == itEnd;
        }

        void disconnect_all()
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                (*it)->getdest()->signal_disconnect(this);
                delete *it;

                ++it;
            }

            m_connected_slots.erase(m_connected_slots.begin(), m_connected_slots.end());
        }

#ifdef _DEBUG
        bool connected(has_slots_interface* pclass)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();
            while (it != itEnd)
            {
                itNext = it;
                ++itNext;
                if ((*it)->getdest() == pclass)
                    return true;
                it = itNext;
            }
            return false;
        }
#endif

        void disconnect(has_slots_interface* pclass)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                if ((*it)->getdest() == pclass)
                {
                    delete *it;
                    m_connected_slots.erase(it);
                    pclass->signal_disconnect(this);
                    return;
                }

                ++it;
            }
        }

        void slot_disconnect(has_slots_interface* pslot)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                typename connections_list::iterator itNext = it;
                ++itNext;

                if ((*it)->getdest() == pslot)
                {
                    delete *it;
                    m_connected_slots.erase(it);
                }

                it = itNext;
            }
        }

    protected:
        connections_list m_connected_slots;
    };

    template<class arg1_type, class arg2_type, class arg3_type, class arg4_type,
        class arg5_type, class arg6_type, class arg7_type, class mt_policy>
        class _signal_base7 : public _signal_base<mt_policy>
    {
    public:
        typedef std::list<_connection_base7<arg1_type, arg2_type, arg3_type,
            arg4_type, arg5_type, arg6_type, arg7_type, mt_policy> *>  connections_list;

        _signal_base7()
        {
            ;
        }

        _signal_base7(const _signal_base7<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, arg7_type, mt_policy>& s)
            : _signal_base<mt_policy>(s)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = s.m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = s.m_connected_slots.end();

            while (it != itEnd)
            {
                (*it)->getdest()->signal_connect(this);
                m_connected_slots.push_back((*it)->clone());

                ++it;
            }
        }

        void slot_duplicate(const has_slots_interface* oldtarget, has_slots_interface* newtarget)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                if ((*it)->getdest() == oldtarget)
                {
                    m_connected_slots.push_back((*it)->duplicate(newtarget));
                }

                ++it;
            }
        }

        ~_signal_base7()
        {
            disconnect_all();
        }

        bool is_empty()
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();
            return it == itEnd;
        }

        void disconnect_all()
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                (*it)->getdest()->signal_disconnect(this);
                delete *it;

                ++it;
            }

            m_connected_slots.erase(m_connected_slots.begin(), m_connected_slots.end());
        }

#ifdef _DEBUG
        bool connected(has_slots_interface* pclass)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();
            while (it != itEnd)
            {
                itNext = it;
                ++itNext;
                if ((*it)->getdest() == pclass)
                    return true;
                it = itNext;
            }
            return false;
        }
#endif

        void disconnect(has_slots_interface* pclass)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                if ((*it)->getdest() == pclass)
                {
                    delete *it;
                    m_connected_slots.erase(it);
                    pclass->signal_disconnect(this);
                    return;
                }

                ++it;
            }
        }

        void slot_disconnect(has_slots_interface* pslot)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                typename connections_list::iterator itNext = it;
                ++itNext;

                if ((*it)->getdest() == pslot)
                {
                    delete *it;
                    m_connected_slots.erase(it);
                }

                it = itNext;
            }
        }

    protected:
        connections_list m_connected_slots;
    };

    template<class arg1_type, class arg2_type, class arg3_type, class arg4_type,
        class arg5_type, class arg6_type, class arg7_type, class arg8_type, class mt_policy>
        class _signal_base8 : public _signal_base<mt_policy>
    {
    public:
        typedef std::list<_connection_base8<arg1_type, arg2_type, arg3_type,
            arg4_type, arg5_type, arg6_type, arg7_type, arg8_type, mt_policy> *>
            connections_list;

        _signal_base8()
        {
            ;
        }

        _signal_base8(const _signal_base8<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, arg7_type, arg8_type, mt_policy>& s)
            : _signal_base<mt_policy>(s)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = s.m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = s.m_connected_slots.end();

            while (it != itEnd)
            {
                (*it)->getdest()->signal_connect(this);
                m_connected_slots.push_back((*it)->clone());

                ++it;
            }
        }

        void slot_duplicate(const has_slots_interface* oldtarget, has_slots_interface* newtarget)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                if ((*it)->getdest() == oldtarget)
                {
                    m_connected_slots.push_back((*it)->duplicate(newtarget));
                }

                ++it;
            }
        }

        ~_signal_base8()
        {
            disconnect_all();
        }

        bool is_empty()
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();
            return it == itEnd;
        }

        void disconnect_all()
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                (*it)->getdest()->signal_disconnect(this);
                delete *it;

                ++it;
            }

            m_connected_slots.erase(m_connected_slots.begin(), m_connected_slots.end());
        }

#ifdef _DEBUG
        bool connected(has_slots_interface* pclass)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();
            while (it != itEnd)
            {
                itNext = it;
                ++itNext;
                if ((*it)->getdest() == pclass)
                    return true;
                it = itNext;
            }
            return false;
        }
#endif

        void disconnect(has_slots_interface* pclass)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                if ((*it)->getdest() == pclass)
                {
                    delete *it;
                    m_connected_slots.erase(it);
                    pclass->signal_disconnect(this);
                    return;
                }

                ++it;
            }
        }

        void slot_disconnect(has_slots_interface* pslot)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::iterator it = m_connected_slots.begin();
            typename connections_list::iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                typename connections_list::iterator itNext = it;
                ++itNext;

                if ((*it)->getdest() == pslot)
                {
                    delete *it;
                    m_connected_slots.erase(it);
                }

                it = itNext;
            }
        }

    protected:
        connections_list m_connected_slots;
    };


    template<class dest_type, class mt_policy>
    class _connection0 : public _connection_base0<mt_policy>
    {
    public:
        _connection0()
        {
            m_pobject = NULL;
            m_pmemfun = NULL;
        }

        _connection0(dest_type* pobject, void (dest_type::*pmemfun)())
        {
            m_pobject = pobject;
            m_pmemfun = pmemfun;
        }

        virtual ~_connection0()
        {
        }

        virtual _connection_base0<mt_policy>* clone()
        {
            return new _connection0<dest_type, mt_policy>(*this);
        }

        virtual _connection_base0<mt_policy>* duplicate(has_slots_interface* pnewdest)
        {
            return new _connection0<dest_type, mt_policy>((dest_type *)pnewdest, m_pmemfun);
        }

        virtual void emit()
        {
            (m_pobject->*m_pmemfun)();
        }

        virtual has_slots_interface* getdest() const
        {
            return m_pobject;
        }

    private:
        dest_type* m_pobject;
        void (dest_type::* m_pmemfun)();
    };

    template<class dest_type, class arg1_type, class mt_policy>
    class _connection1 : public _connection_base1<arg1_type, mt_policy>
    {
    public:
        _connection1()
        {
            m_pobject = NULL;
            m_pmemfun = NULL;
        }

        _connection1(dest_type* pobject, void (dest_type::*pmemfun)(arg1_type))
        {
            m_pobject = pobject;
            m_pmemfun = pmemfun;
        }

        virtual ~_connection1()
        {
        }

        virtual _connection_base1<arg1_type, mt_policy>* clone()
        {
            return new _connection1<dest_type, arg1_type, mt_policy>(*this);
        }

        virtual _connection_base1<arg1_type, mt_policy>* duplicate(has_slots_interface* pnewdest)
        {
            return new _connection1<dest_type, arg1_type, mt_policy>((dest_type *)pnewdest, m_pmemfun);
        }

        virtual void emit(arg1_type a1)
        {
            (m_pobject->*m_pmemfun)(a1);
        }

        virtual has_slots_interface* getdest() const
        {
            return m_pobject;
        }

    private:
        dest_type* m_pobject;
        void (dest_type::* m_pmemfun)(arg1_type);
    };

    template<class dest_type, class arg1_type, class arg2_type, class mt_policy>
    class _connection2 : public _connection_base2<arg1_type, arg2_type, mt_policy>
    {
    public:
        _connection2()
        {
            m_pobject = NULL;
            m_pmemfun = NULL;
        }

        _connection2(dest_type* pobject, void (dest_type::*pmemfun)(arg1_type,
            arg2_type))
        {
            m_pobject = pobject;
            m_pmemfun = pmemfun;
        }

        virtual ~_connection2()
        {
        }

        virtual _connection_base2<arg1_type, arg2_type, mt_policy>* clone()
        {
            return new _connection2<dest_type, arg1_type, arg2_type, mt_policy>(*this);
        }

        virtual _connection_base2<arg1_type, arg2_type, mt_policy>* duplicate(has_slots_interface* pnewdest)
        {
            return new _connection2<dest_type, arg1_type, arg2_type, mt_policy>((dest_type *)pnewdest, m_pmemfun);
        }

        virtual void emit(arg1_type a1, arg2_type a2)
        {
            (m_pobject->*m_pmemfun)(a1, a2);
        }

        virtual has_slots_interface* getdest() const
        {
            return m_pobject;
        }

    private:
        dest_type* m_pobject;
        void (dest_type::* m_pmemfun)(arg1_type, arg2_type);
    };

    template<class dest_type, class arg1_type, class arg2_type, class arg3_type, class mt_policy>
    class _connection3 : public _connection_base3<arg1_type, arg2_type, arg3_type, mt_policy>
    {
    public:
        _connection3()
        {
            m_pobject = NULL;
            m_pmemfun = NULL;
        }

        _connection3(dest_type* pobject, void (dest_type::*pmemfun)(arg1_type,
            arg2_type, arg3_type))
        {
            m_pobject = pobject;
            m_pmemfun = pmemfun;
        }

        virtual ~_connection3()
        {
        }

        virtual _connection_base3<arg1_type, arg2_type, arg3_type, mt_policy>* clone()
        {
            return new _connection3<dest_type, arg1_type, arg2_type, arg3_type, mt_policy>(*this);
        }

        virtual _connection_base3<arg1_type, arg2_type, arg3_type, mt_policy>* duplicate(has_slots_interface* pnewdest)
        {
            return new _connection3<dest_type, arg1_type, arg2_type, arg3_type, mt_policy>((dest_type *)pnewdest, m_pmemfun);
        }

        virtual void emit(arg1_type a1, arg2_type a2, arg3_type a3)
        {
            (m_pobject->*m_pmemfun)(a1, a2, a3);
        }

        virtual has_slots_interface* getdest() const
        {
            return m_pobject;
        }

    private:
        dest_type* m_pobject;
        void (dest_type::* m_pmemfun)(arg1_type, arg2_type, arg3_type);
    };

    template<class dest_type, class arg1_type, class arg2_type, class arg3_type,
        class arg4_type, class mt_policy>
        class _connection4 : public _connection_base4<arg1_type, arg2_type,
        arg3_type, arg4_type, mt_policy>
    {
    public:
        _connection4()
        {
            m_pobject = NULL;
            m_pmemfun = NULL;
        }

        _connection4(dest_type* pobject, void (dest_type::*pmemfun)(arg1_type,
            arg2_type, arg3_type, arg4_type))
        {
            m_pobject = pobject;
            m_pmemfun = pmemfun;
        }

        virtual ~_connection4()
        {
        }

        virtual _connection_base4<arg1_type, arg2_type, arg3_type, arg4_type, mt_policy>* clone()
        {
            return new _connection4<dest_type, arg1_type, arg2_type, arg3_type, arg4_type, mt_policy>(*this);
        }

        virtual _connection_base4<arg1_type, arg2_type, arg3_type, arg4_type, mt_policy>* duplicate(has_slots_interface* pnewdest)
        {
            return new _connection4<dest_type, arg1_type, arg2_type, arg3_type, arg4_type, mt_policy>((dest_type *)pnewdest, m_pmemfun);
        }

        virtual void emit(arg1_type a1, arg2_type a2, arg3_type a3,
            arg4_type a4)
        {
            (m_pobject->*m_pmemfun)(a1, a2, a3, a4);
        }

        virtual has_slots_interface* getdest() const
        {
            return m_pobject;
        }

    private:
        dest_type* m_pobject;
        void (dest_type::* m_pmemfun)(arg1_type, arg2_type, arg3_type,
            arg4_type);
    };

    template<class dest_type, class arg1_type, class arg2_type, class arg3_type,
        class arg4_type, class arg5_type, class mt_policy>
        class _connection5 : public _connection_base5<arg1_type, arg2_type,
        arg3_type, arg4_type, arg5_type, mt_policy>
    {
    public:
        _connection5()
        {
            m_pobject = NULL;
            m_pmemfun = NULL;
        }

        _connection5(dest_type* pobject, void (dest_type::*pmemfun)(arg1_type,
            arg2_type, arg3_type, arg4_type, arg5_type))
        {
            m_pobject = pobject;
            m_pmemfun = pmemfun;
        }

        virtual ~_connection5()
        {
        }

        virtual _connection_base5<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, mt_policy>* clone()
        {
            return new _connection5<dest_type, arg1_type, arg2_type, arg3_type, arg4_type,
                arg5_type, mt_policy>(*this);
        }

        virtual _connection_base5<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, mt_policy>* duplicate(has_slots_interface* pnewdest)
        {
            return new _connection5<dest_type, arg1_type, arg2_type, arg3_type, arg4_type,
                arg5_type, mt_policy>((dest_type *)pnewdest, m_pmemfun);
        }

        virtual void emit(arg1_type a1, arg2_type a2, arg3_type a3, arg4_type a4,
            arg5_type a5)
        {
            (m_pobject->*m_pmemfun)(a1, a2, a3, a4, a5);
        }

        virtual has_slots_interface* getdest() const
        {
            return m_pobject;
        }

    private:
        dest_type* m_pobject;
        void (dest_type::* m_pmemfun)(arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type);
    };

    template<class dest_type, class arg1_type, class arg2_type, class arg3_type,
        class arg4_type, class arg5_type, class arg6_type, class mt_policy>
        class _connection6 : public _connection_base6<arg1_type, arg2_type,
        arg3_type, arg4_type, arg5_type, arg6_type, mt_policy>
    {
    public:
        _connection6()
        {
            m_pobject = NULL;
            m_pmemfun = NULL;
        }

        _connection6(dest_type* pobject, void (dest_type::*pmemfun)(arg1_type,
            arg2_type, arg3_type, arg4_type, arg5_type, arg6_type))
        {
            m_pobject = pobject;
            m_pmemfun = pmemfun;
        }

        virtual ~_connection6()
        {
        }

        virtual _connection_base6<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, mt_policy>* clone()
        {
            return new _connection6<dest_type, arg1_type, arg2_type, arg3_type, arg4_type,
                arg5_type, arg6_type, mt_policy>(*this);
        }

        virtual _connection_base6<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, mt_policy>* duplicate(has_slots_interface* pnewdest)
        {
            return new _connection6<dest_type, arg1_type, arg2_type, arg3_type, arg4_type,
                arg5_type, arg6_type, mt_policy>((dest_type *)pnewdest, m_pmemfun);
        }

        virtual void emit(arg1_type a1, arg2_type a2, arg3_type a3, arg4_type a4,
            arg5_type a5, arg6_type a6)
        {
            (m_pobject->*m_pmemfun)(a1, a2, a3, a4, a5, a6);
        }

        virtual has_slots_interface* getdest() const
        {
            return m_pobject;
        }

    private:
        dest_type* m_pobject;
        void (dest_type::* m_pmemfun)(arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type);
    };

    template<class dest_type, class arg1_type, class arg2_type, class arg3_type,
        class arg4_type, class arg5_type, class arg6_type, class arg7_type, class mt_policy>
        class _connection7 : public _connection_base7<arg1_type, arg2_type,
        arg3_type, arg4_type, arg5_type, arg6_type, arg7_type, mt_policy>
    {
    public:
        _connection7()
        {
            m_pobject = NULL;
            m_pmemfun = NULL;
        }

        _connection7(dest_type* pobject, void (dest_type::*pmemfun)(arg1_type,
            arg2_type, arg3_type, arg4_type, arg5_type, arg6_type, arg7_type))
        {
            m_pobject = pobject;
            m_pmemfun = pmemfun;
        }

        virtual ~_connection7()
        {
        }

        virtual _connection_base7<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, arg7_type, mt_policy>* clone()
        {
            return new _connection7<dest_type, arg1_type, arg2_type, arg3_type, arg4_type,
                arg5_type, arg6_type, arg7_type, mt_policy>(*this);
        }

        virtual _connection_base7<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, arg7_type, mt_policy>* duplicate(has_slots_interface* pnewdest)
        {
            return new _connection7<dest_type, arg1_type, arg2_type, arg3_type, arg4_type,
                arg5_type, arg6_type, arg7_type, mt_policy>((dest_type *)pnewdest, m_pmemfun);
        }

        virtual void emit(arg1_type a1, arg2_type a2, arg3_type a3, arg4_type a4,
            arg5_type a5, arg6_type a6, arg7_type a7)
        {
            (m_pobject->*m_pmemfun)(a1, a2, a3, a4, a5, a6, a7);
        }

        virtual has_slots_interface* getdest() const
        {
            return m_pobject;
        }

    private:
        dest_type* m_pobject;
        void (dest_type::* m_pmemfun)(arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, arg7_type);
    };

    template<class dest_type, class arg1_type, class arg2_type, class arg3_type,
        class arg4_type, class arg5_type, class arg6_type, class arg7_type,
        class arg8_type, class mt_policy>
        class _connection8 : public _connection_base8<arg1_type, arg2_type,
        arg3_type, arg4_type, arg5_type, arg6_type, arg7_type, arg8_type, mt_policy>
    {
    public:
        _connection8()
        {
            m_pobject = NULL;
            m_pmemfun = NULL;
        }

        _connection8(dest_type* pobject, void (dest_type::*pmemfun)(arg1_type,
            arg2_type, arg3_type, arg4_type, arg5_type, arg6_type,
            arg7_type, arg8_type))
        {
            m_pobject = pobject;
            m_pmemfun = pmemfun;
        }

        virtual ~_connection8()
        {
        }

        virtual _connection_base8<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, arg7_type, arg8_type, mt_policy>* clone()
        {
            return new _connection8<dest_type, arg1_type, arg2_type, arg3_type, arg4_type,
                arg5_type, arg6_type, arg7_type, arg8_type, mt_policy>(*this);
        }

        virtual _connection_base8<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, arg7_type, arg8_type, mt_policy>* duplicate(has_slots_interface* pnewdest)
        {
            return new _connection8<dest_type, arg1_type, arg2_type, arg3_type, arg4_type,
                arg5_type, arg6_type, arg7_type, arg8_type, mt_policy>((dest_type *)pnewdest, m_pmemfun);
        }

        virtual void emit(arg1_type a1, arg2_type a2, arg3_type a3, arg4_type a4,
            arg5_type a5, arg6_type a6, arg7_type a7, arg8_type a8)
        {
            (m_pobject->*m_pmemfun)(a1, a2, a3, a4, a5, a6, a7, a8);
        }

        virtual has_slots_interface* getdest() const
        {
            return m_pobject;
        }

    private:
        dest_type* m_pobject;
        void (dest_type::* m_pmemfun)(arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, arg7_type, arg8_type);
    };

    template<class mt_policy = SIGSLOT_DEFAULT_MT_POLICY>
    class signal0 : public _signal_base0<mt_policy>
    {
    public:
        typedef _signal_base0<mt_policy> base;
        typedef typename base::connections_list connections_list;
        using base::m_connected_slots;

        signal0()
        {
            ;
        }

        signal0(const signal0<mt_policy>& s)
            : _signal_base0<mt_policy>(s)
        {
            ;
        }

        template<class desttype>
        void connect(desttype* pclass, void (desttype::*pmemfun)())
        {
            lock_block<mt_policy> lock(this);
            _connection0<desttype, mt_policy>* conn =
                new _connection0<desttype, mt_policy>(pclass, pmemfun);
            m_connected_slots.push_back(conn);
            pclass->signal_connect(this);
        }

        void emit()
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                itNext = it;
                ++itNext;

                (*it)->emit();

                it = itNext;
            }
        }

        void operator()()
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                itNext = it;
                ++itNext;

                (*it)->emit();

                it = itNext;
            }
        }
    };

    template<class arg1_type, class mt_policy = SIGSLOT_DEFAULT_MT_POLICY>
    class signal1 : public _signal_base1<arg1_type, mt_policy>
    {
    public:
        typedef _signal_base1<arg1_type, mt_policy> base;
        typedef typename base::connections_list connections_list;
        using base::m_connected_slots;

        signal1()
        {
            ;
        }

        signal1(const signal1<arg1_type, mt_policy>& s)
            : _signal_base1<arg1_type, mt_policy>(s)
        {
            ;
        }

        template<class desttype>
        void connect(desttype* pclass, void (desttype::*pmemfun)(arg1_type))
        {
            lock_block<mt_policy> lock(this);
            _connection1<desttype, arg1_type, mt_policy>* conn =
                new _connection1<desttype, arg1_type, mt_policy>(pclass, pmemfun);
            m_connected_slots.push_back(conn);
            pclass->signal_connect(this);
        }

        void emit(arg1_type a1)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                itNext = it;
                ++itNext;

                (*it)->emit(a1);

                it = itNext;
            }
        }

        void operator()(arg1_type a1)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                itNext = it;
                ++itNext;

                (*it)->emit(a1);

                it = itNext;
            }
        }
    };

    template<class arg1_type, class arg2_type, class mt_policy = SIGSLOT_DEFAULT_MT_POLICY>
    class signal2 : public _signal_base2<arg1_type, arg2_type, mt_policy>
    {
    public:
        typedef _signal_base2<arg1_type, arg2_type, mt_policy> base;
        typedef typename base::connections_list connections_list;
        using base::m_connected_slots;

        signal2()
        {
            ;
        }

        signal2(const signal2<arg1_type, arg2_type, mt_policy>& s)
            : _signal_base2<arg1_type, arg2_type, mt_policy>(s)
        {
            ;
        }

        template<class desttype>
        void connect(desttype* pclass, void (desttype::*pmemfun)(arg1_type,
            arg2_type))
        {
            lock_block<mt_policy> lock(this);
            _connection2<desttype, arg1_type, arg2_type, mt_policy>* conn = new
                _connection2<desttype, arg1_type, arg2_type, mt_policy>(pclass, pmemfun);
            m_connected_slots.push_back(conn);
            pclass->signal_connect(this);
        }

        void emit(arg1_type a1, arg2_type a2)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                itNext = it;
                ++itNext;

                (*it)->emit(a1, a2);

                it = itNext;
            }
        }

        void operator()(arg1_type a1, arg2_type a2)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                itNext = it;
                ++itNext;

                (*it)->emit(a1, a2);

                it = itNext;
            }
        }
    };

    template<class arg1_type, class arg2_type, class arg3_type, class mt_policy = SIGSLOT_DEFAULT_MT_POLICY>
    class signal3 : public _signal_base3<arg1_type, arg2_type, arg3_type, mt_policy>
    {
    public:
        typedef _signal_base3<arg1_type, arg2_type, arg3_type, mt_policy> base;
        typedef typename base::connections_list connections_list;
        using base::m_connected_slots;

        signal3()
        {
            ;
        }

        signal3(const signal3<arg1_type, arg2_type, arg3_type, mt_policy>& s)
            : _signal_base3<arg1_type, arg2_type, arg3_type, mt_policy>(s)
        {
            ;
        }

        template<class desttype>
        void connect(desttype* pclass, void (desttype::*pmemfun)(arg1_type,
            arg2_type, arg3_type))
        {
            lock_block<mt_policy> lock(this);
            _connection3<desttype, arg1_type, arg2_type, arg3_type, mt_policy>* conn =
                new _connection3<desttype, arg1_type, arg2_type, arg3_type, mt_policy>(pclass,
                    pmemfun);
            m_connected_slots.push_back(conn);
            pclass->signal_connect(this);
        }

        void emit(arg1_type a1, arg2_type a2, arg3_type a3)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                itNext = it;
                ++itNext;

                (*it)->emit(a1, a2, a3);

                it = itNext;
            }
        }

        void operator()(arg1_type a1, arg2_type a2, arg3_type a3)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                itNext = it;
                ++itNext;

                (*it)->emit(a1, a2, a3);

                it = itNext;
            }
        }
    };

    template<class arg1_type, class arg2_type, class arg3_type, class arg4_type, class mt_policy = SIGSLOT_DEFAULT_MT_POLICY>
    class signal4 : public _signal_base4<arg1_type, arg2_type, arg3_type,
        arg4_type, mt_policy>
    {
    public:
        typedef _signal_base4<arg1_type, arg2_type, arg3_type, arg4_type, mt_policy> base;
        typedef typename base::connections_list connections_list;
        using base::m_connected_slots;

        signal4()
        {
            ;
        }

        signal4(const signal4<arg1_type, arg2_type, arg3_type, arg4_type, mt_policy>& s)
            : _signal_base4<arg1_type, arg2_type, arg3_type, arg4_type, mt_policy>(s)
        {
            ;
        }

        template<class desttype>
        void connect(desttype* pclass, void (desttype::*pmemfun)(arg1_type,
            arg2_type, arg3_type, arg4_type))
        {
            lock_block<mt_policy> lock(this);
            _connection4<desttype, arg1_type, arg2_type, arg3_type, arg4_type, mt_policy>*
                conn = new _connection4<desttype, arg1_type, arg2_type, arg3_type,
                arg4_type, mt_policy>(pclass, pmemfun);
            m_connected_slots.push_back(conn);
            pclass->signal_connect(this);
        }

        void emit(arg1_type a1, arg2_type a2, arg3_type a3, arg4_type a4)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                itNext = it;
                ++itNext;

                (*it)->emit(a1, a2, a3, a4);

                it = itNext;
            }
        }

        void operator()(arg1_type a1, arg2_type a2, arg3_type a3, arg4_type a4)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                itNext = it;
                ++itNext;

                (*it)->emit(a1, a2, a3, a4);

                it = itNext;
            }
        }
    };

    template<class arg1_type, class arg2_type, class arg3_type, class arg4_type,
        class arg5_type, class mt_policy = SIGSLOT_DEFAULT_MT_POLICY>
        class signal5 : public _signal_base5<arg1_type, arg2_type, arg3_type,
        arg4_type, arg5_type, mt_policy>
    {
    public:
        typedef _signal_base5<arg1_type, arg2_type, arg3_type, arg4_type, arg5_type, mt_policy> base;
        typedef typename base::connections_list connections_list;
        using base::m_connected_slots;

        signal5()
        {
            ;
        }

        signal5(const signal5<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, mt_policy>& s)
            : _signal_base5<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, mt_policy>(s)
        {
            ;
        }

        template<class desttype>
        void connect(desttype* pclass, void (desttype::*pmemfun)(arg1_type,
            arg2_type, arg3_type, arg4_type, arg5_type))
        {
            lock_block<mt_policy> lock(this);
            _connection5<desttype, arg1_type, arg2_type, arg3_type, arg4_type,
                arg5_type, mt_policy>* conn = new _connection5<desttype, arg1_type, arg2_type,
                arg3_type, arg4_type, arg5_type, mt_policy>(pclass, pmemfun);
            m_connected_slots.push_back(conn);
            pclass->signal_connect(this);
        }

        void emit(arg1_type a1, arg2_type a2, arg3_type a3, arg4_type a4,
            arg5_type a5)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                itNext = it;
                ++itNext;

                (*it)->emit(a1, a2, a3, a4, a5);

                it = itNext;
            }
        }

        void operator()(arg1_type a1, arg2_type a2, arg3_type a3, arg4_type a4,
            arg5_type a5)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                itNext = it;
                ++itNext;

                (*it)->emit(a1, a2, a3, a4, a5);

                it = itNext;
            }
        }
    };


    template<class arg1_type, class arg2_type, class arg3_type, class arg4_type,
        class arg5_type, class arg6_type, class mt_policy = SIGSLOT_DEFAULT_MT_POLICY>
        class signal6 : public _signal_base6<arg1_type, arg2_type, arg3_type,
        arg4_type, arg5_type, arg6_type, mt_policy>
    {
    public:
        typedef _signal_base6<arg1_type, arg2_type, arg3_type, arg4_type, arg5_type, arg6_type, mt_policy> base;
        typedef typename base::connections_list connections_list;
        using base::m_connected_slots;

        signal6()
        {
            ;
        }

        signal6(const signal6<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, mt_policy>& s)
            : _signal_base6<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, mt_policy>(s)
        {
            ;
        }

        template<class desttype>
        void connect(desttype* pclass, void (desttype::*pmemfun)(arg1_type,
            arg2_type, arg3_type, arg4_type, arg5_type, arg6_type))
        {
            lock_block<mt_policy> lock(this);
            _connection6<desttype, arg1_type, arg2_type, arg3_type, arg4_type,
                arg5_type, arg6_type, mt_policy>* conn =
                new _connection6<desttype, arg1_type, arg2_type, arg3_type,
                arg4_type, arg5_type, arg6_type, mt_policy>(pclass, pmemfun);
            m_connected_slots.push_back(conn);
            pclass->signal_connect(this);
        }

        void emit(arg1_type a1, arg2_type a2, arg3_type a3, arg4_type a4,
            arg5_type a5, arg6_type a6)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                itNext = it;
                ++itNext;

                (*it)->emit(a1, a2, a3, a4, a5, a6);

                it = itNext;
            }
        }

        void operator()(arg1_type a1, arg2_type a2, arg3_type a3, arg4_type a4,
            arg5_type a5, arg6_type a6)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                itNext = it;
                ++itNext;

                (*it)->emit(a1, a2, a3, a4, a5, a6);

                it = itNext;
            }
        }
    };

    template<class arg1_type, class arg2_type, class arg3_type, class arg4_type,
        class arg5_type, class arg6_type, class arg7_type, class mt_policy = SIGSLOT_DEFAULT_MT_POLICY>
        class signal7 : public _signal_base7<arg1_type, arg2_type, arg3_type,
        arg4_type, arg5_type, arg6_type, arg7_type, mt_policy>
    {
    public:
        typedef _signal_base7<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, arg7_type, mt_policy> base;
        typedef typename base::connections_list connections_list;
        using base::m_connected_slots;

        signal7()
        {
            ;
        }

        signal7(const signal7<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, arg7_type, mt_policy>& s)
            : _signal_base7<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, arg7_type, mt_policy>(s)
        {
            ;
        }

        template<class desttype>
        void connect(desttype* pclass, void (desttype::*pmemfun)(arg1_type,
            arg2_type, arg3_type, arg4_type, arg5_type, arg6_type,
            arg7_type))
        {
            lock_block<mt_policy> lock(this);
            _connection7<desttype, arg1_type, arg2_type, arg3_type, arg4_type,
                arg5_type, arg6_type, arg7_type, mt_policy>* conn =
                new _connection7<desttype, arg1_type, arg2_type, arg3_type,
                arg4_type, arg5_type, arg6_type, arg7_type, mt_policy>(pclass, pmemfun);
            m_connected_slots.push_back(conn);
            pclass->signal_connect(this);
        }

        void emit(arg1_type a1, arg2_type a2, arg3_type a3, arg4_type a4,
            arg5_type a5, arg6_type a6, arg7_type a7)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                itNext = it;
                ++itNext;

                (*it)->emit(a1, a2, a3, a4, a5, a6, a7);

                it = itNext;
            }
        }

        void operator()(arg1_type a1, arg2_type a2, arg3_type a3, arg4_type a4,
            arg5_type a5, arg6_type a6, arg7_type a7)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                itNext = it;
                ++itNext;

                (*it)->emit(a1, a2, a3, a4, a5, a6, a7);

                it = itNext;
            }
        }
    };

    template<class arg1_type, class arg2_type, class arg3_type, class arg4_type,
        class arg5_type, class arg6_type, class arg7_type, class arg8_type, class mt_policy = SIGSLOT_DEFAULT_MT_POLICY>
        class signal8 : public _signal_base8<arg1_type, arg2_type, arg3_type,
        arg4_type, arg5_type, arg6_type, arg7_type, arg8_type, mt_policy>
    {
    public:
        typedef _signal_base8<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, arg7_type, arg8_type, mt_policy> base;
        typedef typename base::connections_list connections_list;
        using base::m_connected_slots;

        signal8()
        {
            ;
        }

        signal8(const signal8<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, arg7_type, arg8_type, mt_policy>& s)
            : _signal_base8<arg1_type, arg2_type, arg3_type, arg4_type,
            arg5_type, arg6_type, arg7_type, arg8_type, mt_policy>(s)
        {
            ;
        }

        template<class desttype>
        void connect(desttype* pclass, void (desttype::*pmemfun)(arg1_type,
            arg2_type, arg3_type, arg4_type, arg5_type, arg6_type,
            arg7_type, arg8_type))
        {
            lock_block<mt_policy> lock(this);
            _connection8<desttype, arg1_type, arg2_type, arg3_type, arg4_type,
                arg5_type, arg6_type, arg7_type, arg8_type, mt_policy>* conn =
                new _connection8<desttype, arg1_type, arg2_type, arg3_type,
                arg4_type, arg5_type, arg6_type, arg7_type,
                arg8_type, mt_policy>(pclass, pmemfun);
            m_connected_slots.push_back(conn);
            pclass->signal_connect(this);
        }

        void emit(arg1_type a1, arg2_type a2, arg3_type a3, arg4_type a4,
            arg5_type a5, arg6_type a6, arg7_type a7, arg8_type a8)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                itNext = it;
                ++itNext;

                (*it)->emit(a1, a2, a3, a4, a5, a6, a7, a8);

                it = itNext;
            }
        }

        void operator()(arg1_type a1, arg2_type a2, arg3_type a3, arg4_type a4,
            arg5_type a5, arg6_type a6, arg7_type a7, arg8_type a8)
        {
            lock_block<mt_policy> lock(this);
            typename connections_list::const_iterator itNext, it = m_connected_slots.begin();
            typename connections_list::const_iterator itEnd = m_connected_slots.end();

            while (it != itEnd)
            {
                itNext = it;
                ++itNext;

                (*it)->emit(a1, a2, a3, a4, a5, a6, a7, a8);

                it = itNext;
            }
        }
    };

}; // namespace sigslot

#endif // _SIGSLOT_H__s

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/733442.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Igraph入门指南 4

二、图的创建 图分有向图和无向图&#xff0c;所以图的创建有各自的实现方式。 1、手工创建图&#xff1a; 1-1 通过文本创建&#xff1a;graph_from_literal 通过每项提供两个顶点名&#xff08;或ID号&#xff09;作为一条边的格式&#xff0c;手动创建图&#xff0c;顶点…

【敬伟ps教程】文字处理工具

文章目录 文字工具使用方式文字图层文字工具选项字符面板段落面板文字工具使用方式 文字工具(快捷键T),包含横排和直排两种类型 创建文本两种类型:点式文本、段落文本 创建文字方式 1、在画面上单击,出现文字光标,可输入文字,然后需要在工具栏中点击“√”或者 Ctrl+…

数学建模-动态规划(美赛运用)

动态规划模型的要素是对问题解决的抽象&#xff0c;其可分为&#xff1a; 阶段。指对问题进行解决的自然划分。例如&#xff1a;在最短线路问题中&#xff0c;每进行走一步的决策就是一个阶段。 状态。指一个阶段开始时的自然状况。例如&#xff1a;在最短线路问题中&#xff…

docker 运行异构镜像

概述 关于docker镜像在不同的cpu架构下运行报错的解决办法&#xff0c;作者踩坑验证&#xff0c;在此分享经验 某次工作遇到需要银行内部部署docker镜像&#xff0c;由于行内已经开始走信创的路线&#xff0c;使用鲲鹏系统&#xff0c;arm架构&#xff0c;记过就遇到了standa…

Linux:安装docker并修改其目录

一、背景 1、通常而言&#xff0c;云服务器的系统盘只有40G&#xff0c;若安装docker后直接运行&#xff0c;则其下载的镜像及容器&#xff0c;均在该系统盘下。 2、当前服务器硬盘背景为&#xff1a;40G系统盘 额外数据盘。 3、需求&#xff1a;将docker运行目录修改至数据盘…

ComfyUI-Flowty-TripoSR

这是一个自定义节点&#xff0c;可让您直接从ComfyUI使用TripoSR。TripoSR 是由 Tripo AI 和 Stability AI 合作开发的最先进的开源模型&#xff0c;用于从单个图像快速前馈 3D 重建。&#xff08;TL;DR 它从图像创建 3d 模型。这篇文章主要介绍了将TripoSR作为ComfyUI节点的配…

华容道问题求解_详细设计(四)之查找算法2_BFS

&#xff08;续上篇&#xff09; 利用BFS查找&#xff0c;会找到最短路径&#xff08;没有权重的图&#xff09;&#xff0c;这个道理比较简单&#xff0c;这是由于寻找路径的方法都是从起点或者接近起点的位置开始的。查找过程如果画出图来&#xff0c;类似于一圈圈的放大&…

【动态规划入门】判断子序列

每日一道算法题之判断子序列 一、题目描述二、思路三、C代码 一、题目描述 题目来源&#xff1a;LeetCode 给定字符串 s 和 t &#xff0c;判断 s 是否为 t 的子序列。 字符串的一个子序列是原始字符串删除一些&#xff08;也可以不删除&#xff09;字符而不改变剩余字符相对位…

HashMap 底层,同时遍历+删除会出现什么问题?怎么解决

HashMap底层使用的是数组链表/红黑树的方式实现的 在并发场景下同时进行遍历删除&#xff0c;会出现ConcurrentModificationException异常&#xff0c;这是因为HashMap的迭代器是快速失败的&#xff08;fail-fast&#xff09;,当检测到结构性的改变&#xff08;比如增加或删除…

java IO实现一次性读取一个文件全部内容后在写入一个文件

java IO实现一次性读取一个文件全部内容后在写入一个文件 import java.io.*;/*** author admin*/ public class FileIo {public static void main(String[] args) {String content getFileString();File outputFile new File("C:\\Users\\admin\\Desktop\\test\\1.txt&…

Kubernetes 几大概念的作用

更详细的组件通信流程 Kubernetes 主要由以下几个核心组件组成&#xff1a; 1. etcd 保存了整个集群的状态&#xff1b; 2. API Server 提供了资源操作的唯一入口&#xff0c;并提供认证&#xff0c;授权&#xff0c;访问控制&#xff0c;API 注册和发现等机制&#xff1b; …

python安装graph-tool 和 torch_geometric,pytorch总结:

目录 1.graph-tool 2.torch_geometric 3.pytorch 1.graph-tool &#xff08;1&#xff09;各种方式试过了&#xff0c;本地安装的没法正常用&#xff1a;conda本地化安装&#xff08;conda install --use-local&#xff09;&#xff0c;以 graph-tool 安装为例 - 知乎 &…

Leetcode每日一题】 二维前缀和 - 矩阵区域和(难度⭐⭐)(31)

1. 题目解析 题目链接&#xff1a;1314. 矩阵区域和 题目乍一看很晦涩难懂&#xff0c;又是大于等于又是k的 仔细分析&#xff0c;题目所说的意思就是以[i,j]为中心&#xff0c;求上下左右向外拓展k个单位的矩阵和&#xff0c;放在名为answer的矩阵中&#xff0c;最后返回ans…

Java里的泛型<T> T 的运用

因为我总是写一些CRUD的代码&#xff0c;泛型的知识都忘得差不多了&#xff0c;今天特地来写一下。 泛型可以认为是 把类型参数化&#xff0c;方便代码重用。 Double[] num new Double [] {1.11, 2.22}; String[] str new String [] {"hello", "world"…

Session登陆实践

Session登陆实践 Session登录是一种常见的Web应用程序身份验证和状态管理机制。当用户成功登录到应用程序时&#xff0c;服务器会为其创建一个会话&#xff08;session&#xff09;&#xff0c;并在会话中存储有关用户的信息。这样&#xff0c;用户在与应用程序交互的整个会话…

设计模式 代理模式

代理模式主要使用了 Java 的多态&#xff0c;主要是接口 干活的是被代理类&#xff0c;代理类主要是接活&#xff0c; 你让我干活&#xff0c;好&#xff0c;我交给幕后的类去干&#xff0c;你满意就成&#xff0c;那怎么知道被代理类能不能干呢&#xff1f; 同根就成&#xff…

leetcode 估算题

2117. 一个区间内所有数乘积的缩写 class Solution {public String abbreviateProduct(int left, int right) {long c 0, suf 1, maxSuf (long) 1e11, len 0;double pre 1.0;for (int num left; num < right; num) {pre * num;suf * num;while (pre > 100000) { /…

档案室管理人员有哪些岗位

档案室管理人员的岗位可以分为以下几类&#xff1a; 1. 档案文书管理岗位&#xff1a;负责档案文书的管理、整理、归档和借阅工作&#xff0c;包括档案资料的分类、编目、装订、存储等。 2. 档案数字化管理岗位&#xff1a;负责将纸质档案数字化&#xff0c;进行扫描、转换、存…

你喜欢那种舞者呢?

迷宫中的舞者&#xff1a;程序员职业赛道的探索与魅力 在数字世界的深处&#xff0c;程序员的职业赛道宛如一座神秘而迷人的迷宫。这个迷宫中&#xff0c;每个转角都隐藏着无限的可能&#xff0c;每个领域都散发着独特的魅力。前端开发者如同花园中的精灵&#xff0c;后端工程师…

mac下终端命令提示补全

欢迎来到我的博客&#xff0c;代码的世界里&#xff0c;每一行都是一个故事 mac下终端命令提示补全 前言Zsh-autosuggestions原理解析&#xff1a;智能提示的工作方式1. 命令历史分析&#xff1a;2. 智能提示生成&#xff1a;3. 用户交互和选择&#xff1a;4. 配置和个性化&…