Fork me on GitHub

source: git/external/HepMC3/GenHeavyIon_fwd.h@ 95a917c

Last change on this file since 95a917c was 95a917c, checked in by Pavel Demin <pavel.demin@…>, 3 years ago

add HepMC3 library

  • Property mode set to 100644
File size: 475 bytes
Line 
1// -*- C++ -*-
2//
3// This file is part of HepMC
4// Copyright (C) 2014-2020 The HepMC collaboration (see AUTHORS for details)
5//
6///
7/// @file GenHeavyIon_fwd.h
8/// @brief Minimal forward declarations for GenHeavyIon
9///
10
11#ifndef HEPMC3_GENHEAVYION_FWD_H
12#define HEPMC3_GENHEAVYION_FWD_H
13
14#include <memory>
15
16namespace HepMC3 {
17
18class GenHeavyIon;
19
20using GenHeavyIonPtr = std::shared_ptr<GenHeavyIon>;
21using ConstGenHeavyIonPtr = std::shared_ptr<const GenHeavyIon>;
22
23}
24
25#endif
Note: See TracBrowser for help on using the repository browser.