Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:11:31

0001 #ifndef Fireworks_Core_FWHFView_h
0002 #define Fireworks_Core_FWHFView_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     Core
0006 // Class  :     FWHFView
0007 //
0008 /**\class FWHFView FWHFView.h Fireworks/Core/interface/FWHFView.h
0009 
0010  Description: [one line class summary]
0011 
0012  Usage:
0013     <usage>
0014 
0015 */
0016 //
0017 // Original Author:  Yanjun
0018 //         Created:  Mon May 31 13:42:21 CEST 2010
0019 //
0020 
0021 // system include files
0022 
0023 // user include files
0024 #include "Fireworks/Core/interface/FWLegoViewBase.h"
0025 
0026 // forward declarations
0027 
0028 class FWHFView : public FWLegoViewBase {
0029 public:
0030   FWHFView(TEveWindowSlot*, FWViewType::EType);
0031   ~FWHFView() override;
0032 
0033   void setContext(const fireworks::Context&) override;
0034   // ---------- const member functions ---------------------
0035 
0036   // ---------- static member functions --------------------
0037 
0038   // ---------- member functions ---------------------------
0039 
0040   FWHFView(const FWHFView&) = delete;  // stop default
0041 
0042   const FWHFView& operator=(const FWHFView&) = delete;  // stop default
0043 
0044   // ---------- member data --------------------------------
0045 };
0046 
0047 #endif