https://github.com/root-project/root
Raw File
Tip revision: 98f2e0558ddd5d1759d123a86fc6939391301164 authored by Fons Rademakers on 29 February 2012, 15:45:49 UTC
tag patch release v5-32-01.
Tip revision: 98f2e05
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