diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-02-10 13:56:14 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-02-10 13:56:14 +0100 |
commit | 6fb7507c5801ed0a5e819ccf5c37da396fa21283 (patch) | |
tree | e30f2f6cb7ee726a7898d52ff94744b6f6894ca9 /include | |
parent | 034488fc4aca4fb85c923d881f4b95675eba37b6 (diff) |
Replace DummyExtItem with a flag in Extensible
Diffstat (limited to 'include')
-rw-r--r-- | include/extensible.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/extensible.h b/include/extensible.h index 4e6721414..a0544bba1 100644 --- a/include/extensible.h +++ b/include/extensible.h @@ -84,6 +84,11 @@ class CoreExport Extensible : public classbase * Holds all extensible metadata for the class. */ ExtensibleStore extensions; + + /** True if this Extensible has been culled. + * A warning is generated if false on destruction. + */ + unsigned int culled:1; public: /** * Get the extension items for iteraton (i.e. for metadata sync during netburst) |