#include #include #include "MFTest.h" //______________________________________________________________________________ MFTest::MFTest( const TGWindow* p, UInt_t height, UInt_t width ) : TGMainFrame( p, height, width ) { // ctor MapWindow(); } //______________________________________________________________________________ MFTest::~MFTest() { // dtor } //______________________________________________________________________________ int main(int argc, char** argv) { // char *nosplash[2] = {"mftest","-l"}; int n = 2; TApplication application( "ROOT Application", &n, (char**)&nosplash); MFTest t(gClient->GetRoot()); application.Run(); return 0; }