summaryrefslogtreecommitdiff
path: root/src/core/pool_type.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/pool_type.hpp')
-rw-r--r--src/core/pool_type.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/pool_type.hpp b/src/core/pool_type.hpp
index 2d32df724..2f35b4a88 100644
--- a/src/core/pool_type.hpp
+++ b/src/core/pool_type.hpp
@@ -221,6 +221,15 @@ struct Pool {
{
return Tpool->items;
}
+
+ /**
+ * Dummy function called after destructor of each member.
+ * If you want to use it, override it in PoolItem's subclass.
+ * @param index index of deleted item
+ * @note when this function is called, PoolItem::Get(index) == NULL.
+ * @note it's called only when !CleaningPool()
+ */
+ static FORCEINLINE void PostDestructor(size_t index) { }
};
private: