#ifndef ROOT_TEmulatedMapProxy
#define ROOT_TEmulatedMapProxy
#include "TEmulatedCollectionProxy.h"
class TEmulatedMapProxy : public TEmulatedCollectionProxy  {
protected:
   
   void ReadMap(int nElements, TBuffer &b);
   
   void WriteMap(int nElements, TBuffer &b);
public:
   
   virtual TVirtualCollectionProxy* Generate() const;
   
   TEmulatedMapProxy(const TEmulatedMapProxy& copy);
   
   TEmulatedMapProxy(const char* cl_name);
   
   virtual ~TEmulatedMapProxy();
   
   virtual void *At(UInt_t idx);
   
   virtual UInt_t Size() const;
   
   virtual void Streamer(TBuffer &refBuffer);
   
   virtual void Streamer(TBuffer &buff, void *pObj, int siz) {
      TEmulatedCollectionProxy::Streamer(buff,pObj,siz);
   }
};
#endif
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.