Skip to content
Snippets Groups Projects
Commit 0c308ff7 authored by Philippe Canal's avatar Philippe Canal Committed by Philippe Canal
Browse files

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
......@@ -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
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment