You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is that a unique_ptr is not copyable so the template fails on the merge method within the component. I create a template hack so that when it runs merge it just uses the default constructor.
It will still throw errors if you cannot copy AND its not default construable. To be honest I think you should have copy semantics. I built a unique_ptr container that takes a template abstract class and derived class that does this, but I thought I post the hack I made.
The only other way I can think of doing this is having the component object store std::function of copy/move/constructor/deconstructor. I now see why unique_ptr carries around a separate deconstructor now.
The text was updated successfully, but these errors were encountered:
I understand the concerns and there are fair tbh; however, before messing up with the c++11 specifics... have you tried with kult::component<'ptr', shared_ptr<>> instead?
I wanted to avoid using the shard_ptr as much as I can. I mean I should use it more, but my ocd doesn't like using it when I know there will only be one strong reference. Of course, speaking of references.
I just discovered std::reference_wrapper and std::ref and this works just fine. Would of saved me a few days of fiddling with templates. My whole problem is that I want to use some kind of base class to handle the delivery of vertices. Like a shape object delivers triangles differently than an object that carry's font glyphs. This all might be me as I am still in the mind set of using an uber node object and just inheriting everything from that.
I wanted to create a compoent as such:
The problem is that a unique_ptr is not copyable so the template fails on the merge method within the component. I create a template hack so that when it runs merge it just uses the default constructor.
It will still throw errors if you cannot copy AND its not default construable. To be honest I think you should have copy semantics. I built a unique_ptr container that takes a template abstract class and derived class that does this, but I thought I post the hack I made.
The only other way I can think of doing this is having the component object store std::function of copy/move/constructor/deconstructor. I now see why unique_ptr carries around a separate deconstructor now.
The text was updated successfully, but these errors were encountered: