https://github.com/root-project/root
Raw File
Tip revision: 16b68872c83aff8898e73ba6065fac3b29bbde87 authored by Rene Brun on 11 February 2010, 13:16:37 UTC
Re-tag patch release v5-26-00b
Tip revision: 16b6887
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