ROOT logo
// @(#)root/base:$Id: TQConnection.h 25128 2008-08-12 17:59:19Z pcanal $
// Author: Valeriy Onuchin & Fons Rademakers   15/10/2000

/*************************************************************************
 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#ifndef ROOT_TQConnection
#define ROOT_TQConnection

//////////////////////////////////////////////////////////////////////////
//                                                                      //
// TQConnection class is an internal class, used in the object          //
// communication mechanism.                                             //
//                                                                      //
// TQConnection:                                                        //
//    -  is a list of signal_lists containing pointers                  //
//       to this connection                                             //
//    -  receiver is the object to which slot-method is applied         //
//                                                                      //
// This implementation is provided by                                   //
// Valeriy Onuchin (onuchin@sirius.ihep.su).                            //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

#ifndef ROOT_TList
#include "TList.h"
#endif
#ifndef ROOT_TQObject
#include "TQObject.h"
#endif
#ifndef ROOT_Varargs
#include "Varargs.h"
#endif

class TQSlot;


class TQConnection : public TList, public TQObject {

protected:
   TQSlot  *fSlot;       // slot-method calling interface
   void    *fReceiver;   // ptr to object to which slot is applied
   TString  fClassName;  // class name of the receiver

   virtual void PrintCollectionHeader(Option_t* option) const;

public:
   TQConnection();
   TQConnection(TClass* cl, void *receiver, const char *method_name);
   TQConnection(const char *class_name, void *receiver,
                const char *method_name);
   TQConnection(const TQConnection &con);
   virtual ~TQConnection();

   const char *GetName() const;
   void *GetReceiver() const { return fReceiver; }
   const char *GetClassName() const { return fClassName; }
   void Destroyed();         // *SIGNAL*
   void ExecuteMethod();
   void ExecuteMethod(Int_t nargs, va_list va);
   void ExecuteMethod(Long_t param);
   void ExecuteMethod(Long64_t param);
   void ExecuteMethod(Double_t param);
   void ExecuteMethod(Long_t *params, Int_t nparam = -1);
   void ExecuteMethod(const char *params);
   void ls(Option_t *option="") const;

   ClassDef(TQConnection,0) // Internal class used in the object communication mechanism
};

R__EXTERN char *gTQSlotParams; // used to pass string parameters

#endif
 TQConnection.h:1
 TQConnection.h:2
 TQConnection.h:3
 TQConnection.h:4
 TQConnection.h:5
 TQConnection.h:6
 TQConnection.h:7
 TQConnection.h:8
 TQConnection.h:9
 TQConnection.h:10
 TQConnection.h:11
 TQConnection.h:12
 TQConnection.h:13
 TQConnection.h:14
 TQConnection.h:15
 TQConnection.h:16
 TQConnection.h:17
 TQConnection.h:18
 TQConnection.h:19
 TQConnection.h:20
 TQConnection.h:21
 TQConnection.h:22
 TQConnection.h:23
 TQConnection.h:24
 TQConnection.h:25
 TQConnection.h:26
 TQConnection.h:27
 TQConnection.h:28
 TQConnection.h:29
 TQConnection.h:30
 TQConnection.h:31
 TQConnection.h:32
 TQConnection.h:33
 TQConnection.h:34
 TQConnection.h:35
 TQConnection.h:36
 TQConnection.h:37
 TQConnection.h:38
 TQConnection.h:39
 TQConnection.h:40
 TQConnection.h:41
 TQConnection.h:42
 TQConnection.h:43
 TQConnection.h:44
 TQConnection.h:45
 TQConnection.h:46
 TQConnection.h:47
 TQConnection.h:48
 TQConnection.h:49
 TQConnection.h:50
 TQConnection.h:51
 TQConnection.h:52
 TQConnection.h:53
 TQConnection.h:54
 TQConnection.h:55
 TQConnection.h:56
 TQConnection.h:57
 TQConnection.h:58
 TQConnection.h:59
 TQConnection.h:60
 TQConnection.h:61
 TQConnection.h:62
 TQConnection.h:63
 TQConnection.h:64
 TQConnection.h:65
 TQConnection.h:66
 TQConnection.h:67
 TQConnection.h:68
 TQConnection.h:69
 TQConnection.h:70
 TQConnection.h:71
 TQConnection.h:72
 TQConnection.h:73
 TQConnection.h:74
 TQConnection.h:75
 TQConnection.h:76
 TQConnection.h:77
 TQConnection.h:78