Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-21 10:00:30

0001 /***********************************************************************************\
0002 * (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations *
0003 *                                                                                   *
0004 * This software is distributed under the terms of the Apache version 2 licence,     *
0005 * copied verbatim in the file "LICENSE".                                            *
0006 *                                                                                   *
0007 * In applying this licence, CERN does not waive the privileges and immunities       *
0008 * granted to it by virtue of its status as an Intergovernmental Organization        *
0009 * or submit itself to any jurisdiction.                                             *
0010 \***********************************************************************************/
0011 #ifndef GAUDIKERNEL_ICLASSINFO_H
0012 #define GAUDIKERNEL_ICLASSINFO_H
0013 
0014 // Experiment specific include files
0015 #include "GaudiKernel/ClassID.h"
0016 #include "GaudiKernel/Kernel.h"
0017 
0018 /** @class IClassInfo IClassInfo.h GaudiKernel/IClassInfo.h
0019 
0020     Data base class allowing to store persistent type information
0021 */
0022 class GAUDI_API IClassInfo {
0023 public:
0024   /// Standard Destructor
0025   virtual ~IClassInfo() = default;
0026   /// Retrieve Pointer to class definition structure
0027   virtual const CLID& clID() const = 0;
0028 };
0029 
0030 #endif // GAUDIKERNEL_ICLASSINFO_H