Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // -*- C++ -*-
0002 //
0003 // This file is part of HepMC
0004 // Copyright (C) 2014-2023 The HepMC collaboration (see AUTHORS for details)
0005 //
0006 ///
0007 /// @file GenCrossSection_fwd.h
0008 /// @brief Minimal forward declarations for GenCrossSection
0009 ///
0010 
0011 #ifndef HEPMC3_GENCROSSSECTION_FWD_H
0012 #define HEPMC3_GENCROSSSECTION_FWD_H
0013 
0014 #include <memory>
0015 
0016 namespace HepMC3 {
0017 
0018 class GenCrossSection;
0019 
0020 using GenCrossSectionPtr = std::shared_ptr<GenCrossSection>;
0021 using ConstGenCrossSectionPtr = std::shared_ptr<const GenCrossSection>;
0022 
0023 }
0024 
0025 #endif