00001 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef TMAPLE_H 00019 #define TMAPLE_H 00020 00021 #include <TQQObject.h> 00022 00027 class TMaple : public TQQObject { 00028 00029 Int_t fd_in; 00030 Int_t fd_out; 00031 Int_t fPid; 00032 00033 char *fBuffer; 00034 00035 public: 00036 TMaple(); 00037 ~TMaple(); 00038 00039 char *Get(char*); 00040 char *Put(char*); 00041 00042 // TString& Eval(char *); // Evaluations in Maple 00043 00044 ClassDef(TMaple,1) 00045 00046 }; 00047 00048 #endif
1.3.2