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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
#ifndef Fireworks_Core_FWEvePtr_h
#define Fireworks_Core_FWEvePtr_h
// -*- C++ -*-
//
// Package: Core
// Class : FWEvePtr
//
/**\class FWEvePtr FWEvePtr.h Fireworks/Core/interface/FWEvePtr.h
Description: Smart pointer which properly deals with TEveElement reference counting
Usage:
<usage>
*/
//
// Original Author: Chris Jones
// Created: Wed Nov 12 11:08:49 EST 2008
//
// system include files
#include <memory>
#include "TEveElement.h"
// user include files
// forward declarations
template <typename T>
class FWEvePtr {
public:
FWEvePtr() {}
explicit FWEvePtr(T* iElement) : m_container(new TEveElementList()) { m_container->AddElement(iElement); }
// ---------- const member functions ---------------------
T* operator->() const {
return m_container && m_container->HasChildren() ? static_cast<T*>(m_container->FirstChild()) : static_cast<T*>(0);
}
T& operator*() const { return *(operator->()); }
T* get() const { return (operator->()); }
operator bool() const { return m_container && m_container->HasChildren(); }
// ---------- static member functions --------------------
// ---------- member functions ---------------------------
void reset() { m_container.reset(); }
void reset(T* iNew) {
FWEvePtr<T> temp(iNew);
swap(temp);
}
void destroyElement() {
if (m_container) {
m_container->DestroyElements();
}
reset();
}
void swap(FWEvePtr<T>& iOther) { m_container.swap(iOther.m_container); }
private:
//FWEvePtr(const FWEvePtr&); // stop default
//const FWEvePtr& operator=(const FWEvePtr&); // stop default
// ---------- member data --------------------------------
std::shared_ptr<TEveElement> m_container;
};
#endif
|