Regards, Pasha.
---------------------------------------- cinfo.h
#include "Rtypes.h"
#include "iostream.h"
class cinfo {
public:
 cinfo();
 cinfo(istream& mystream);
 ~cinfo();
 ClassDef(cinfo,1)	
};
----------------------------------------
/cdf/upgrade/tracking/murat/test_root>rootcint -f cinfo_cint.cc -c -I$ROOTSYS/include cinfo.h
Note: operator new() masked c
class cinfo in cinfo.h line 4 original base of virtual func
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
William J. Deninger writes:
 > Hello!
 > 
 > OnWinNT:
 > C:\Root\rootcint mydict.cpp -c CInfo.cpp
 > doesn't seem to be generating the Streamer and ShowMembers
 > implementations. Any ideas?
 > 
 > Cinfo.h
 > -------------------
 > #include "TROOT.h"
 > #include "TRint.h"
 > 
 > #include "iostream.h"
 > 
 > class CINFO
 > {
 > public:
 >  ClassDef(CINFO,1)  //Simple event class
 > 
 >  CINFO();
 >  CINFO(istream& mystream);
 >  ~CINFO();
 > };
 > 
 >