CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
FWModelId.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Core
4 // Class : FWModelId
5 //
6 // Implementation:
7 // <Notes on implementation>
8 //
9 // Original Author: Chris Jones
10 // Created: Wed Mar 5 11:00:48 EST 2008
11 //
12 
13 // system include files
14 
15 // user include files
18 
19 //
20 // constants, enums and typedefs
21 //
22 
23 //
24 // static data member definitions
25 //
26 
27 //
28 // constructors and destructor
29 //
30 /*
31  FWModelId::FWModelId()
32  {
33  }
34  */
35 // FWModelId::FWModelId(const FWModelId& rhs)
36 // {
37 // // do actual copying here;
38 // }
39 
40 /*
41  FWModelId::~FWModelId()
42  {
43  }
44  */
45 
46 //
47 // assignment operators
48 //
49 // const FWModelId& FWModelId::operator=(const FWModelId& rhs)
50 // {
51 // //An exception safe implementation is
52 // FWModelId temp(rhs);
53 // swap(rhs);
54 //
55 // return *this;
56 // }
57 
58 //
59 // member functions
60 //
61 
62 //
63 // const member functions
64 //
65 void FWModelId::unselect() const {
66  if (m_item) {
68  }
69 }
70 void FWModelId::select() const {
71  if (m_item) {
73  }
74 }
75 
77  if (m_item) {
79  }
80 }
81 
82 //
83 // static member functions
84 //
void unselect(int iIndex) const
Definition: FWEventItem.cc:215
const FWEventItem * m_item
Definition: FWModelId.h:56
void unselect() const
Definition: FWModelId.cc:65
void select() const
Definition: FWModelId.cc:70
void toggleSelect(int iIndex) const
Definition: FWEventItem.cc:236
int m_index
Definition: FWModelId.h:57
void toggleSelect() const
Definition: FWModelId.cc:76
void select(int iIndex) const
Definition: FWEventItem.cc:224