/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/FWLite/interface/RunHistoryGetter.h
44 строки
1 KB
Shahzad Malik Muzaffar
[DataFormats][clang-tidy] make deleted function public
28 июл 2021, 15:38
28 июл 2021, 15:38
4fd5d99
Код
Авторство
О чём код?
#ifndef DataFormats_FWLite_RunHistoryGetter_h #define DataFormats_FWLite_RunHistoryGetter_h // -*- C++ -*- // // Package: DataFormats // Class : RunHistoryGetter // /**\class RunHistoryGetter RunHistoryGetter.h src/DataFormats/interface/RunHistoryGetter.h Description: [one line class summary] Usage: <usage> */ // // Original Author: // Created: Wed Feb 10 11:15:16 CST 2010 // #include "DataFormats/FWLite/interface/Run.h" #include "DataFormats/FWLite/interface/HistoryGetterBase.h" namespace fwlite { class RunHistoryGetter : public HistoryGetterBase { public: RunHistoryGetter(const Run*); ~RunHistoryGetter() override; // ---------- const member functions --------------------- const edm::ProcessHistory& history() const override; RunHistoryGetter(const RunHistoryGetter&) = delete; // stop default const RunHistoryGetter& operator=(const RunHistoryGetter&) = delete; // stop default private: // ---------- member data -------------------------------- const fwlite::Run* run_; }; } // namespace fwlite #endif