/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Fireworks/Core/src/CSGConnector.cc
70 строк
1 KB
Cms Build
Clang-Format
20 май 2019, 13:07
20 май 2019, 13:07
6684288
Код
Авторство
О чём код?
// -*- C++ -*- // // Package: Core // Class : CSGConnector // // Implementation: // <Notes on implementation> // // Original Author: Chris Jones // Created: Thu May 29 20:58:15 CDT 2008 // // system include files // user include files #include "Fireworks/Core/src/CSGConnector.h" #include "Fireworks/Core/interface/CSGActionSupervisor.h" ClassImp(CSGConnector); // // constants, enums and typedefs // // // static data member definitions // // // constructors and destructor // //CSGConnector::CSGConnector() //{ //} // CSGConnector::CSGConnector(const CSGConnector& rhs) // { // // do actual copying here; // } //CSGConnector::~CSGConnector() //{ //} // // assignment operators // // const CSGConnector& CSGConnector::operator=(const CSGConnector& rhs) // { // //An exception safe implementation is // CSGConnector temp(rhs); // swap(rhs); // // return *this; // } // // member functions // void CSGConnector::handleMenu(Int_t entry) { m_supervisor->activateMenuEntry(entry); } void CSGConnector::handleToolBar(Int_t entry) { m_supervisor->activateToolBarEntry(entry); } // // const member functions // // // static member functions //