https://github.com/root-project/root
Raw File
Tip revision: 3a51c6bafda87b9c88e1e5d577cb8daace23a30c authored by Fons Rademakers on 03 November 2011, 17:05:07 UTC
tag pro version v5-32-00-rc1.
Tip revision: 3a51c6b
vbase1.cxx
/* -*- C++ -*- */
/*************************************************************************
 * Copyright(c) 1995~2005  Masaharu Goto (cint@pcroot.cern.ch)
 *
 * For the licensing terms see the file COPYING
 *
 ************************************************************************/
#if defined(interp) && defined(makecint)
#pragma include "test.dll"
#else
#include "vbase1.h"
#endif

int main(){
  btest();
  ctest();
  dtest();
  etest();
  ftest();
  gtest();
  cout << endl;
  return 0;
}
back to top