https://github.com/root-project/root
Raw File
Tip revision: e6001d92907684b51e7f759acdad679fce595d31 authored by Rene Brun on 26 November 2008, 08:36:40 UTC
Stamping v5-21-06
Tip revision: e6001d9
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