https://github.com/root-project/root
Raw File
Tip revision: 1a061d519b3ae358db26b5d9862e127d6ab15329 authored by Fons Rademakers on 05 June 2012, 13:29:43 UTC
tag pro version v5-34-00.
Tip revision: 1a061d5
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