Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TASPluginGS.h
Go to the documentation of this file.
1 // @(#)root/graf:$Id$
2 // Author: Valeriy Onuchin 23/06/05
3 
4 /*************************************************************************
5  * Copyright (C) 2001-2002, Rene Brun, Fons Rademakers *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TASPluginGS
13 #define ROOT_TASPluginGS
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TASPluginGS //
19 // //
20 //////////////////////////////////////////////////////////////////////////
21 
22 #include "TASImagePlugin.h"
23 
24 
25 class TASPluginGS : public TASImagePlugin {
26 
27 private:
28  char *fInterpreter; ///< path to GhostScript interpreter
29 
30 public:
31  TASPluginGS(const char *ext);
32  virtual ~TASPluginGS();
33 
34  ASImage *File2ASImage(const char *filename);
35 
36  ClassDef(TASPluginGS, 0) // PS/EPS/PDF plugin based on GhostScript interpreter
37 };
38 
39 #endif