Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Root
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
为了安全,强烈建议开启2FA双因子认证:User Settings -> Account -> Enable two-factor authentication!!!
Show more breadcrumbs
cxwx
Root
Commits
0c308ff7
Commit
0c308ff7
authored
7 years ago
by
Philippe Canal
Committed by
Philippe Canal
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add comments on status bits that are not available to TObject (even-though they should have been)
parent
40cfa306
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/base/inc/TObject.h
+4
-0
4 additions, 0 deletions
core/base/inc/TObject.h
with
4 additions
and
0 deletions
core/base/inc/TObject.h
+
4
−
0
View file @
0c308ff7
...
...
@@ -56,11 +56,15 @@ public:
//----- any given hierarchy).
enum
EStatusBits
{
kCanDelete
=
BIT
(
0
),
///< if object in a list can be deleted
// 2 is taken by TDataMember
kMustCleanup
=
BIT
(
3
),
///< if object destructor must call RecursiveRemove()
kIsReferenced
=
BIT
(
4
),
///< if object is referenced by a TRef or TRefArray
kHasUUID
=
BIT
(
5
),
///< if object has a TUUID (its fUniqueID=UUIDNumber)
kCannotPick
=
BIT
(
6
),
///< if object in a pad cannot be picked
// 7 is taken by TAxis.
kNoContextMenu
=
BIT
(
8
),
///< if object does not want context menu
// 9, 10 are taken by TH1, TF1, TAxis and a few others
// 12 is taken by TAxis
kInvalidObject
=
BIT
(
13
)
///< if object ctor succeeded but object should not be used
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment