https://github.com/root-project/root
Raw File
Tip revision: ef9141a8e61b42c4306195a599f1fa9d536d52c3 authored by Philippe Canal on 21 August 2012, 21:45:51 UTC
Import revision 45679 from the trunk:
Tip revision: ef9141a
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