/* -*- C++ -*- */ /************************************************************************* * Copyright(c) 1995~2005 Masaharu Goto (root-cint@cern.ch) * * For the licensing terms see the file COPYING * ************************************************************************/ #include #include #include struct vadat { char buf[256]; }; struct A { //A() {} //A(int ain,double bin,short cin,char din,double ein) : a(ain) , b(bin) , c(cin) , d(din) , e(ein) { } int a; double b; short c; char d; double e; //void disp() {printf("'a=%d b=%g c=%d d=%c e=%g'",a,b,c,d,e);} }; void disp(A& x) {printf("'a=%d b=%g c=%d d=%c e=%g'",x.a,x.b,x.c,x.d,x.e);} void xdump(char* x,int size) { int i; for(i=0;i