https://github.com/root-project/root
Raw File
Tip revision: 30635de21400ecee0a597e42507acc5f6b3102e7 authored by Fons Rademakers on 16 November 2011, 12:46:42 UTC
tag pro version v5-32-00-rc2.
Tip revision: 30635de
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