// @(#)root/proofx:$Id: TXHandler.cxx 20882 2007-11-19 11:31:26Z rdm $
// Author: G. Ganis Mar 2006

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

//////////////////////////////////////////////////////////////////////////
//                                                                      //
// TXHandler                                                            //
//                                                                      //
// Handler of asynchronous events for xproofd sockets.                  //
// Classes needing this should inherit from this and overload the       //
// relevant methods.                                                    //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

#include "TError.h"
#include "TXHandler.h"

ClassImp(TXHandler)

//________________________________________________________________________
Bool_t TXHandler::HandleInput(const void *)
{
   // Handler of asynchronous input events

   AbstractMethod("HandleInput");
   return kTRUE;
}

//________________________________________________________________________
Bool_t TXHandler::HandleError(const void *)
{
   // Handler of asynchronous error events

   AbstractMethod("HandleError");
   return kTRUE;
}

Last change: Wed Jun 25 08:55:08 2008
Last generated: 2008-06-25 08:55

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.