https://github.com/root-project/root
Raw File
Tip revision: 66c136d3797e9c963b7276d0c46828f3df4bd0fd authored by Fons Rademakers on 31 May 2011, 21:08:15 UTC
tag pro version v5-30-00-rc1.
Tip revision: 66c136d
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