https://github.com/root-project/root
Raw File
Tip revision: 99c6d5aa13ec45536b2d414ddb3e7914bc5f98c0 authored by Fons Rademakers on 21 September 2012, 14:26:57 UTC
tag patch release v5-34-02.
Tip revision: 99c6d5a
vbase1.cxx
/* -*- C++ -*- */
/*************************************************************************
 * Copyright(c) 1995~2005  Masaharu Goto (root-cint@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