From 11fc30c02087768c90650c53be4a6e76b5f879e0 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Thu, 19 Oct 2023 20:46:31 +0200 Subject: core: Fixed compilation issues --- c++/core/id.h | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'c++/core/id.h') diff --git a/c++/core/id.h b/c++/core/id.h index cebb3bc..d836648 100644 --- a/c++/core/id.h +++ b/c++/core/id.h @@ -51,21 +51,4 @@ public: return value_; } }; - -/** - * @experimental - * Container for a class which has relations to the provided id classes. - * Meant as an idea for a generic class which uses this - */ -template -class obj_owns_ids { -private: - std::tuple children_; - T obj_; -public: - obj_owns_ids(T obj, Ids... children): - obj_{std::move(obj)}, - children_{std::move(children)} - {} -}; } -- cgit v1.2.3