https://github.com/root-project/root
Raw File
Tip revision: e0fe70e2badff74d5c8d646a2b81a794b1b9df97 authored by Rene Brun on 29 September 2010, 09:37:56 UTC
Make version v5-27-06
Tip revision: e0fe70e
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