https://github.com/root-project/root
Raw File
Tip revision: 964f36cbab28f3954893b7e89fd76f90763279f9 authored by Rene Brun on 26 February 2009, 14:09:46 UTC
Tagging development version v5-23-02
Tip revision: 964f36c
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