Warning, /include/Rivet/Tools/Cuts.fhh is written in an unsupported language. File is not indexed.
0001 #ifndef RIVET_Cuts_FHH
0002 #define RIVET_Cuts_FHH
0003
0004 #include <memory>
0005
0006 namespace Rivet {
0007
0008
0009 /// @internal Forward declaration of helper class. Not for end users.
0010 class CuttableBase;
0011
0012 /// @internal Base class for cut objects.
0013 /// @note End users should always use the @ref Cut typedef instead.
0014 class CutBase;
0015
0016 /// Main cut object
0017 typedef std::shared_ptr<CutBase> Cut;
0018
0019
0020 }
0021
0022 #endif