/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/FWLite/interface/EventHistoryGetter.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_EventHistoryGetter_h #define DataFormats_FWLite_EventHistoryGetter_h // -*- C++ -*- // // Package: DataFormats // Class : EventHistoryGetter // /**\class EventHistoryGetter EventHistoryGetter.h src/DataFormats/interface/EventHistoryGetter.h Description: [one line class summary] Usage: <usage> */ // // Original Author: // Created: Wed Feb 10 11:15:16 CST 2010 // #include "DataFormats/FWLite/interface/Event.h" #include "DataFormats/FWLite/interface/HistoryGetterBase.h" namespace fwlite { class EventHistoryGetter : public HistoryGetterBase { public: EventHistoryGetter(const Event*); ~EventHistoryGetter() override; // ---------- const member functions --------------------- const edm::ProcessHistory& history() const override; EventHistoryGetter(const EventHistoryGetter&) = delete; // stop default const EventHistoryGetter& operator=(const EventHistoryGetter&) = delete; // stop default private: // ---------- member data -------------------------------- const fwlite::Event* event_; }; } // namespace fwlite #endif