https://github.com/root-project/root
Raw File
Tip revision: 18548053486dbc0c1d3ff4187df281a722417a65 authored by Fons Rademakers on 24 April 2008, 16:01:15 UTC
tags revision 23343 for ALICE.
Tip revision: 1854805
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