#ifndef ROOT_TGLOutput
#define ROOT_TGLOutput
#ifndef ROOT_Rtypes
#include "Rtypes.h"
#endif
class TGLViewer;
class TGLOutput {
public:
   enum EFormat { kEPS_SIMPLE, kEPS_BSP, kPDF_SIMPLE, kPDF_BSP };
   static Bool_t Capture(TGLViewer & viewer, EFormat format,
                         const char * filePath = 0);
   static void   StartEmbeddedPS();
   static void   CloseEmbeddedPS();
   static void   Capture(TGLViewer & viewer);
   virtual ~TGLOutput() { }
private:
   static Bool_t CapturePostscript(TGLViewer & viewer, EFormat format,
                                   const char * filePath);
   ClassDef(TGLOutput,0) 
};
#endif
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.