rivet is hosted by Hepforge, IPPP Durham
Rivet 4.0.0
Cuts.fhh
1#ifndef RIVET_Cuts_FHH
2#define RIVET_Cuts_FHH
3
4#include <memory>
5
6namespace Rivet {
7
8
9 /// @internal Forward declaration of helper class. Not for end users.
10 class CuttableBase;
11
12 /// @internal Base class for cut objects.
13 /// @note End users should always use the @ref Cut typedef instead.
14 class CutBase;
15
16 /// Main cut object
17 typedef std::shared_ptr<CutBase> Cut;
18
19
20}
21
22#endif