ROOT logo
// @(#)root/base:$Id: TExec.h 20877 2007-11-19 11:17:07Z rdm $
// Author: Rene Brun   29/12/99

/*************************************************************************
 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#ifndef ROOT_TExec
#define ROOT_TExec


//////////////////////////////////////////////////////////////////////////
//                                                                      //
// TExec                                                                //
//                                                                      //
// A TExec object can execute a CINT command.                           //
//                                                                      //
//////////////////////////////////////////////////////////////////////////


#ifndef ROOT_TNamed
#include "TNamed.h"
#endif


class TExec : public TNamed {

public:

   TExec();
   TExec(const char *name, const char *command);
   TExec(const TExec &text);
   virtual ~TExec();
   virtual void     Exec(const char *command="");
   virtual void     Paint(Option_t *option="");
   virtual void     SavePrimitive(ostream &out, Option_t *option = "");
   virtual void     SetAction(const char *action) {SetTitle(action);}
   
   ClassDef(TExec,1);  //To execute a CINT command
};

#endif

 TExec.h:1
 TExec.h:2
 TExec.h:3
 TExec.h:4
 TExec.h:5
 TExec.h:6
 TExec.h:7
 TExec.h:8
 TExec.h:9
 TExec.h:10
 TExec.h:11
 TExec.h:12
 TExec.h:13
 TExec.h:14
 TExec.h:15
 TExec.h:16
 TExec.h:17
 TExec.h:18
 TExec.h:19
 TExec.h:20
 TExec.h:21
 TExec.h:22
 TExec.h:23
 TExec.h:24
 TExec.h:25
 TExec.h:26
 TExec.h:27
 TExec.h:28
 TExec.h:29
 TExec.h:30
 TExec.h:31
 TExec.h:32
 TExec.h:33
 TExec.h:34
 TExec.h:35
 TExec.h:36
 TExec.h:37
 TExec.h:38
 TExec.h:39
 TExec.h:40
 TExec.h:41
 TExec.h:42
 TExec.h:43
 TExec.h:44
 TExec.h:45
 TExec.h:46
 TExec.h:47