#ifndef ROOT_TViewerX3D #define ROOT_TViewerX3D //+SEQ,CopyRight,T=NOINCLUDE. ////////////////////////////////////////////////////////////////////////// // // // TViewerX3D // // // // C++ interface to the X3D viewer // // // ////////////////////////////////////////////////////////////////////////// #ifndef ROOT_TVirtualPad //*KEEP,TVirtualPad. #include "TVirtualPad.h" //*KEND. #endif class TViewerX3D : public TObject { public: TViewerX3D(); virtual ~TViewerX3D() { } static void View(TVirtualPad *pad, Option_t *option); ClassDef(TViewerX3D,1) //C++ interface to the X3D viewer }; #endif