/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Fireworks/Core/src/CSGConnector.h
50 строк
1 KB
Shahzad Malik Muzaffar
[VISUALIZATION] Changes suggested by new llvm18 clang-format
05 сен 2024, 17:14
05 сен 2024, 17:14
de16ab8
Код
Авторство
О чём код?
#ifndef Fireworks_Core_CSGConnector_h #define Fireworks_Core_CSGConnector_h // -*- C++ -*- // // Package: Core // Class : CSGConnector // /**\class CSGConnector CSGConnector.h Fireworks/Core/interface/CSGConnector.h Description: An adapter classes used to connect ROOT signals to a CSGAction Usage: <usage> */ // // Original Author: Chris Jones // Created: Thu May 29 18:16:04 CDT 2008 // // system include files #include "TQObject.h" // user include files // forward declarations class CSGAction; class CSGActionSupervisor; class CSGConnector : public TQObject { public: CSGConnector(CSGAction *action, CSGActionSupervisor *supervisor) : m_action(action), m_supervisor(supervisor) {} //virtual ~CSGConnector(); // ---------- member functions --------------------------- void handleMenu(Int_t entry); void handleToolBar(Int_t entry); ClassDef(CSGConnector, 0); private: CSGConnector(const CSGConnector &); // stop default const CSGConnector &operator=(const CSGConnector &); // stop default // ---------- member data -------------------------------- CSGAction *m_action; CSGActionSupervisor *m_supervisor; }; #endif