ROOT logo
#ifndef ALIOBJECTLOADER_H
#define ALIOBJECTLOADER_H
/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
 * See cxx source for full Copyright notice                               */

/* $Id$ */

////////////////////////////////////////////
//                                        //
//  class AliObjectLoader                 //
//                                        //
//                                        //
////////////////////////////////////////////

class TObject;
class TFolder;
class TString;
class AliDataLoader;

#include "AliBaseLoader.h"

class AliObjectLoader: public AliBaseLoader
{
 public:
     AliObjectLoader(){};
     AliObjectLoader(const TString& name, AliDataLoader* dl, Bool_t storeontop = kFALSE);
     virtual          ~AliObjectLoader(){};
     TObject*          Get() const;

 protected:
     TFolder*          GetFolder() const;
     Int_t             AddToBoard(TObject* obj);
     void              RemoveFromBoard(TObject* obj);

 private:
     AliObjectLoader(const AliObjectLoader&);            //Not implemented
     AliObjectLoader& operator=(const AliObjectLoader&); //Not implemented


 ClassDef(AliObjectLoader,1)    
  
};
#endif


 AliObjectLoader.h:1
 AliObjectLoader.h:2
 AliObjectLoader.h:3
 AliObjectLoader.h:4
 AliObjectLoader.h:5
 AliObjectLoader.h:6
 AliObjectLoader.h:7
 AliObjectLoader.h:8
 AliObjectLoader.h:9
 AliObjectLoader.h:10
 AliObjectLoader.h:11
 AliObjectLoader.h:12
 AliObjectLoader.h:13
 AliObjectLoader.h:14
 AliObjectLoader.h:15
 AliObjectLoader.h:16
 AliObjectLoader.h:17
 AliObjectLoader.h:18
 AliObjectLoader.h:19
 AliObjectLoader.h:20
 AliObjectLoader.h:21
 AliObjectLoader.h:22
 AliObjectLoader.h:23
 AliObjectLoader.h:24
 AliObjectLoader.h:25
 AliObjectLoader.h:26
 AliObjectLoader.h:27
 AliObjectLoader.h:28
 AliObjectLoader.h:29
 AliObjectLoader.h:30
 AliObjectLoader.h:31
 AliObjectLoader.h:32
 AliObjectLoader.h:33
 AliObjectLoader.h:34
 AliObjectLoader.h:35
 AliObjectLoader.h:36
 AliObjectLoader.h:37
 AliObjectLoader.h:38
 AliObjectLoader.h:39
 AliObjectLoader.h:40
 AliObjectLoader.h:41
 AliObjectLoader.h:42
 AliObjectLoader.h:43
 AliObjectLoader.h:44
 AliObjectLoader.h:45