Skip to content
Snippets Groups Projects
Commit 92ee998d authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

TrigRoiDescriptor: use virtual/override and final where applicable

parent d91d5f70
No related branches found
No related tags found
No related merge requests found
// emacs: this is -*- c++ -*-
/*
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
*/
//
// @file TrigRoiDescriptor.h
......@@ -10,7 +10,6 @@
//
// @author sutt@cern.ch
//
// $Id: TrigRoiDescriptor.h, v0.1 Fri 08 Jun 2013 23:52:09 CEST sutt $
/// nope - should be used for standalone also, perhaps need to
......@@ -125,13 +124,13 @@ public:
TrigRoiDescriptor& operator=( const IRoiDescriptor& roi );
// Destructor
~TrigRoiDescriptor();
virtual ~TrigRoiDescriptor();
unsigned int roiId() const { return m_roiId; }
unsigned int l1Id() const { return m_l1Id; }
unsigned int roiWord() const { return m_roiWord; }
virtual unsigned int roiId() const override final { return m_roiId; }
virtual unsigned int l1Id() const override final { return m_l1Id; }
virtual unsigned int roiWord() const override final { return m_roiWord; }
operator std::string() const;
virtual operator std::string() const override;
protected:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment