https://github.com/root-project/root
Raw File
Tip revision: 6ceee81af26dfa03fb19567d7598078506ed1254 authored by Fons Rademakers on 09 May 2012, 10:56:45 UTC
tag patch release v5-32-03.
Tip revision: 6ceee81
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