#include "TView.h"
#include "TROOT.h"
#include "TPluginManager.h"
ClassImp(TView)
TView::TView(const TView& tv) :
   TObject(tv),
   TAttLine(tv)
{
   
}
TView *TView::CreateView(Int_t system, const Double_t *rmin, const Double_t *rmax) 
{
   
   
   TView *view = 0;
   TPluginHandler *h;
   if ((h = gROOT->GetPluginManager()->FindHandler("TView"))) {
      if (h->LoadPlugin() == -1)
         return 0;
      view = (TView*)h->ExecPlugin(3,system,rmin,rmax);
   }
   return view;
}
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.