/*
   This file implements the Weaver Extensions basics.

   $ Author: Mirko Boehm $
   $ Copyright: (C) 2004, Mirko Boehm $
   $ Contact: mirko@kde.org
         http://www.kde.org
         http://www.hackerbuero.org $
   $ License: LGPL with the following explicit clarification:
         This code may be linked against any version of the TQt toolkit
         from Troll Tech, Norway. $

*/

#include "weaverextensions.h"
#include "weaver.h"

namespace KPIM {
namespace ThreadWeaver {

    WeaverExtension::WeaverExtension ( TQObject *parent, const char *name)
        : TQObject (parent, name)
    {
    }

    void WeaverExtension::attach (Weaver *w)
    {
        connect (w, TQ_SIGNAL (threadCreated (Thread *) ),
                 TQ_SLOT (threadCreated (Thread *) ) );
        connect (w, TQ_SIGNAL (threadDestroyed (Thread *) ),
                 TQ_SLOT (threadDestroyed (Thread *) ) );
        connect (w, TQ_SIGNAL (threadBusy (Thread *) ),
                 TQ_SLOT (threadBusy (Thread *) ) );
        connect (w, TQ_SIGNAL (threadSuspended (Thread *) ),
                 TQ_SLOT (threadSuspended (Thread *) ) );
    }

    WeaverExtension::~WeaverExtension()
    {
    }

    void WeaverExtension::threadCreated (Thread *)
    {
    }

    void WeaverExtension::threadDestroyed (Thread *)
    {
    }

    void WeaverExtension::threadBusy (Thread *)
    {
    }

    void WeaverExtension::threadSuspended (Thread *)
    {
    }

}
}

#include "weaverextensions.moc"