/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Fireworks/Core/interface/FWHFView.h
47 строк
1 KB
Shahzad Malik Muzaffar
[Fireworks][clang-tidy] modernize-use-equals-delete suggests to make deleted member function public
28 июл 2021, 12:33
28 июл 2021, 12:33
68a6350
Код
Авторство
О чём код?
#ifndef Fireworks_Core_FWHFView_h #define Fireworks_Core_FWHFView_h // -*- C++ -*- // // Package: Core // Class : FWHFView // /**\class FWHFView FWHFView.h Fireworks/Core/interface/FWHFView.h Description: [one line class summary] Usage: <usage> */ // // Original Author: Yanjun // Created: Mon May 31 13:42:21 CEST 2010 // // system include files // user include files #include "Fireworks/Core/interface/FWLegoViewBase.h" // forward declarations class FWHFView : public FWLegoViewBase { public: FWHFView(TEveWindowSlot*, FWViewType::EType); ~FWHFView() override; void setContext(const fireworks::Context&) override; // ---------- const member functions --------------------- // ---------- static member functions -------------------- // ---------- member functions --------------------------- FWHFView(const FWHFView&) = delete; // stop default const FWHFView& operator=(const FWHFView&) = delete; // stop default // ---------- member data -------------------------------- }; #endif