1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// -*- C++ -*-
//
// Package: cmsShow36
// Class : FWISpyView
//
// Implementation:
// [Notes on implementation]
//
// Original Author: Alja Mrak-Tadel
// Created: Wed Apr 7 14:40:31 CEST 2010
//
// system include files
// user include files
#include "TGLViewer.h"
#include "Fireworks/Core/interface/CmsShowViewPopup.h"
#include "Fireworks/Core/interface/FWISpyView.h"
#include "Fireworks/Core/interface/Context.h"
#include "TEveBoxSet.h"
#include "TEveScene.h"
#include "TEveManager.h"
//
// constants, enums and typedefs
//
//
// static data member definitions
//
//
// constructors and destructor
//
FWISpyView::FWISpyView(TEveWindowSlot* slot, FWViewType::EType typeId, unsigned int version)
: FW3DViewBase(slot, typeId, version) {}
// FWISpyView::FWISpyView(const FWISpyView& rhs)
// {
// // do actual copying here;
// }
FWISpyView::~FWISpyView() {}
void FWISpyView::setContext(const fireworks::Context& x) { FW3DViewBase::setContext(x); }
void FWISpyView::populateController(ViewerParameterGUI& gui) const { FW3DViewBase::populateController(gui); }
|