https://github.com/root-project/root
Raw File
Tip revision: 1ed40bc611fae8512a42dc3e408c30f113a324fe authored by Rene Brun on 25 June 2008, 07:37:08 UTC
Tagging production version 5.20
Tip revision: 1ed40bc
t991.h
/* -*- C++ -*- */
/*************************************************************************
 * Copyright(c) 1995~2005  Masaharu Goto (cint@pcroot.cern.ch)
 *
 * For the licensing terms see the file COPYING
 *
 ************************************************************************/

#ifndef TOBJECT
#define TOBJECT

typedef int Option_t;

class TObject {
 public:
  TObject() { }
  TObject(const TObject& x) { }
  virtual ~TObject() { }
};

#endif
back to top