00001 // @(#)root/proofx:$Id: TXHandler.cxx 20882 2007-11-19 11:31:26Z rdm $ 00002 // Author: G. Ganis Mar 2006 00003 00004 /************************************************************************* 00005 * Copyright (C) 1995-2006, Rene Brun and Fons Rademakers. * 00006 * All rights reserved. * 00007 * * 00008 * For the licensing terms see $ROOTSYS/LICENSE. * 00009 * For the list of contributors see $ROOTSYS/README/CREDITS. * 00010 *************************************************************************/ 00011 00012 ////////////////////////////////////////////////////////////////////////// 00013 // // 00014 // TXHandler // 00015 // // 00016 // Handler of asynchronous events for xproofd sockets. // 00017 // Classes needing this should inherit from this and overload the // 00018 // relevant methods. // 00019 // // 00020 ////////////////////////////////////////////////////////////////////////// 00021 00022 #include "TError.h" 00023 #include "TXHandler.h" 00024 00025 ClassImp(TXHandler) 00026 00027 //________________________________________________________________________ 00028 Bool_t TXHandler::HandleInput(const void *) 00029 { 00030 // Handler of asynchronous input events 00031 00032 AbstractMethod("HandleInput"); 00033 return kTRUE; 00034 } 00035 00036 //________________________________________________________________________ 00037 Bool_t TXHandler::HandleError(const void *) 00038 { 00039 // Handler of asynchronous error events 00040 00041 AbstractMethod("HandleError"); 00042 return kTRUE; 00043 }