/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Fireworks/Core/interface/FWEventAnnotation.h
34 строки
776 B
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_FWEventAnnotation_h #define Fireworks_Core_FWEventAnnotation_h #include "TGLAnnotation.h" class FWConfiguration; namespace fwlite { class Event; } class FWEventAnnotation : public TGLAnnotation { public: FWEventAnnotation(TGLViewerBase* view); ~FWEventAnnotation() override; void Render(TGLRnrCtx& rnrCtx) override; //configuration management interface virtual void addTo(FWConfiguration&) const; virtual void setFrom(const FWConfiguration&); void setLevel(long x); void setEvent(); FWEventAnnotation(const FWEventAnnotation&) = delete; // stop default const FWEventAnnotation& operator=(const FWEventAnnotation&) = delete; // stop default private: void updateOverlayText(); int m_level; }; #endif