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
48
|
#ifndef Fireworks_Core_FWEveLegoView_h
#define Fireworks_Core_FWEveLegoView_h
// -*- C++ -*-
//
// Package: Core
// Class : FWEveLegoView
//
/**\class FWEveLegoView FWEveLegoView.h Fireworks/Core/interface/FWEveLegoView.h
Description: [one line class summary]
Usage:
<usage>
*/
//
// Original Author: Alja Mrak-Tadel
// Created: Mon May 31 13:09:38 CEST 2010
//
#include "Fireworks/Core/interface/FWLegoViewBase.h"
class TEveStraightLineSet;
class FWEveLegoView : public FWLegoViewBase {
public:
FWEveLegoView(TEveWindowSlot*, FWViewType::EType);
~FWEveLegoView() override;
void setContext(const fireworks::Context&) override;
void setBackgroundColor(Color_t) override;
// ---------- const member functions ---------------------
// ---------- static member functions --------------------
// ---------- member functions ---------------------------
FWEveLegoView(const FWEveLegoView&) = delete; // stop default
const FWEveLegoView& operator=(const FWEveLegoView&) = delete; // stop default
private:
// ---------- member data --------------------------------
TEveStraightLineSet* m_boundaries;
};
#endif
|