ROOT logo
// @(#)root/ruby:$Id: TRuby.h 20882 2007-11-19 11:31:26Z rdm $
// Author:  Elias Athanasopoulos, May 2004

#ifndef ROOT_TRuby
#define ROOT_TRuby

#ifndef ROOT_TObject
#include "TObject.h"
#endif

class TRuby {

private:
  static bool Initialize();
public:
  virtual ~TRuby() { }
  // execute a Ruby statement (e.g. "require 'ruby'")
  static void Exec(const char *cmd);

  // evaluate a Ruby expression (e.g. "1+1")
  static TObject *Eval(const char *expr);

  // bind a ROOT object with, at the ruby side, the name "label"
  static bool Bind(TObject *obj, const char *label);

  // enter an interactive ruby session (exit with ^D)
  static void Prompt();

  ClassDef(TRuby,0)   //Ruby/ROOT interface
};

#endif
 TRuby.h:1
 TRuby.h:2
 TRuby.h:3
 TRuby.h:4
 TRuby.h:5
 TRuby.h:6
 TRuby.h:7
 TRuby.h:8
 TRuby.h:9
 TRuby.h:10
 TRuby.h:11
 TRuby.h:12
 TRuby.h:13
 TRuby.h:14
 TRuby.h:15
 TRuby.h:16
 TRuby.h:17
 TRuby.h:18
 TRuby.h:19
 TRuby.h:20
 TRuby.h:21
 TRuby.h:22
 TRuby.h:23
 TRuby.h:24
 TRuby.h:25
 TRuby.h:26
 TRuby.h:27
 TRuby.h:28
 TRuby.h:29
 TRuby.h:30
 TRuby.h:31
 TRuby.h:32