https://github.com/root-project/root
Raw File
Tip revision: 80867bf2320444893e7248bead8b63aec23993a4 authored by Pere Mato on 07 November 2014, 14:06:59 UTC
Update ROOT version files to v5.34/23.
Tip revision: 80867bf
vbase1.cxx
/* -*- C++ -*- */
/*************************************************************************
 * Copyright(c) 1995~2005  Masaharu Goto (root-cint@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