Run.cc
Go to the documentation of this file.
2 // vim: set sw=2 expandtab :
3 
5 
6 namespace art {
7 
8  Run::~Run() = default;
9 
11  ModuleContext const& mc,
12  RangeSet const& rs /*= RangeSet::invalid()*/)
13  : DataViewImpl{InRun, rp, mc, false, rs}
14  {}
15 
16  RunID
17  Run::id() const
18  {
19  return DataViewImpl::runID();
20  }
21 
22 } // namespace art
RunID id() const
Definition: Run.cc:17
RunID runID() const
Definition: DataViewImpl.cc:50
Run(RunPrincipal const &principal, ModuleContext const &mc, RangeSet const &rs=RangeSet::invalid())
Definition: Run.cc:10