Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/root/TVirtualIsAProxy.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // @(#)root/meta:$Id$
0002 // Author: Markus Frank 20/05/2005
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers.               *
0006  * All rights reserved.                                                  *
0007  *                                                                       *
0008  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0009  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0010  *************************************************************************/
0011 
0012 #ifndef ROOT_TVirtualIsAProxy
0013 #define ROOT_TVirtualIsAProxy
0014 
0015 class TClass;
0016 
0017 //////////////////////////////////////////////////////////////////////////
0018 //                                                                      //
0019 // TClass                                                               //
0020 //                                                                      //
0021 // Virtual IsAProxy base class.                                         //
0022 //                                                                      //
0023 //////////////////////////////////////////////////////////////////////////
0024 
0025 class TClass;
0026 
0027 class TVirtualIsAProxy  {
0028 public:
0029    virtual ~TVirtualIsAProxy() { }
0030    virtual void SetClass(TClass *cl) = 0;
0031    virtual TClass* operator()(const void *obj) = 0;
0032 };
0033 
0034 #endif // ROOT_TVirtualIsAProxy