/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Fireworks/Core/src/FWCompactVerticalLayout.h
49 строк
1 KB
Shahzad Malik Muzaffar
[VISUALIZATION] [LLVM21] Apply code-checks and formats
10 фев 2026, 00:28
10 фев 2026, 00:28
6c6c405
Код
Авторство
О чём код?
#ifndef Fireworks_Core_FWCompactVerticalLayout_h #define Fireworks_Core_FWCompactVerticalLayout_h // -*- C++ -*- // // Package: Core // Class : FWCompactVerticalLayout // /**\class FWCompactVerticalLayout FWCompactVerticalLayout.h Fireworks/Core/interface/FWCompactVerticalLayout.h Description: <one line class summary> Usage: <usage> */ // // Original Author: Chris Jones // Created: Tue Mar 17 12:10:41 CDT 2009 // // system include files #include "TGLayout.h" // user include files // forward declarations class FWCompactVerticalLayout : public TGVerticalLayout { public: FWCompactVerticalLayout(TGCompositeFrame* iMain); ~FWCompactVerticalLayout() override; // ---------- const member functions --------------------- void Layout() override; TGDimension GetDefaultSize() const override; // ---------- static member functions -------------------- // ---------- member functions --------------------------- ClassDefOverride(FWCompactVerticalLayout, 0) // Vertical layout manager private : FWCompactVerticalLayout(const FWCompactVerticalLayout&); // stop default const FWCompactVerticalLayout& operator=(const FWCompactVerticalLayout&); // stop default // ---------- member data -------------------------------- }; #endif