-
Move Only Class
Make interfaces easy to use correctly and hard to use incorrectly.” — Scott Meyers Disclaimer In Cpp there are a couple of patterns that are recommended ideas for handling resources. One of them is using move only classes. Move only classes mitigate double delete resources. For resources like TCP network connections that can be a…