/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Fireworks/Core/src/FWBoxIconButton.h
58 строк
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_FWBoxIconButton_h #define Fireworks_Core_FWBoxIconButton_h // -*- C++ -*- // // Package: Core // Class : FWBoxIconButton // /**\class FWBoxIconButton FWBoxIconButton.h Fireworks/Core/interface/FWBoxIconButton.h Description: <one line class summary> Usage: <usage> */ // // Original Author: Chris Jones // Created: Thu Feb 19 19:04:08 CST 2009 // // system include files #include "TGButton.h" // user include files // forward declarations class FWBoxIconBase; class FWBoxIconButton : public TGButton { public: FWBoxIconButton(const TGWindow* iParent, FWBoxIconBase* iBase, Int_t iID = -1, GContext_t norm = TGButton::GetDefaultGC()(), UInt_t option = 0); ~FWBoxIconButton() override; // ---------- const member functions --------------------- // ---------- static member functions -------------------- // ---------- member functions --------------------------- void setNormCG(GContext_t); protected: void DoRedraw() override; public: FWBoxIconButton(const FWBoxIconButton&) = delete; // stop default const FWBoxIconButton& operator=(const FWBoxIconButton&) = delete; // stop default private: // ---------- member data -------------------------------- FWBoxIconBase* m_iconBase; }; #endif