#ifndef ROOT_TPyDispatcher
#define ROOT_TPyDispatcher
#ifndef ROOT_TObject
#include "TObject.h"
#endif
struct _object;
typedef _object PyObject;
class TPyDispatcher : public TObject {
public:
   TPyDispatcher( PyObject* callable );
   TPyDispatcher( const TPyDispatcher& );
   TPyDispatcher& operator=( const TPyDispatcher& );
   ~TPyDispatcher();
public:
#ifndef __CINT__
   PyObject* Dispatch( const char* format = 0, ... );
#else
   PyObject* Dispatch( const char* format, ... );
#endif
   ClassDef( TPyDispatcher, 1 );   
private:
   PyObject* fCallable;            
};
#endif
Last update: Thu Jan 17 09:02:03 2008
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.