// Author: Wim Lavrijsen February 2006
#ifndef ROOT_TPyROOTApplication
#define ROOT_TPyROOTApplication
//////////////////////////////////////////////////////////////////////////////
// //
// TPyROOTApplication //
// //
// Setup interactive application. //
// //
//////////////////////////////////////////////////////////////////////////////
// ROOT
#ifndef ROOT_TApplication
#include "TApplication.h"
#endif
namespace PyROOT {
class TPyROOTApplication : public TApplication {
public:
static Bool_t CreatePyROOTApplication( Bool_t bLoadLibs = kTRUE );
static Bool_t InitROOTGlobals();
static Bool_t InitCINTMessageCallback();
public:
TPyROOTApplication(
const char* acn, Int_t* argc, char** argv, Bool_t bLoadLibs = kTRUE );
virtual ~TPyROOTApplication() { }
ClassDef(TPyROOTApplication,0) //Setup interactive application
};
} // namespace PyROOT
#endif
ROOT page - Class index - Class Hierarchy - Top of the page
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.