|
||||
File indexing completed on 2025-01-18 10:01:12
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
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |