C++ improved declaration of singleton managers

This commit is contained in:
Bruno
2021-04-18 13:27:19 +02:00
parent bb64579fa5
commit d68987be0f
10 changed files with 26 additions and 18 deletions

View File

@@ -87,8 +87,8 @@ class Device
friend class DeviceSource;
Device();
Device(Device const& copy); // Not Implemented
Device& operator=(Device const& copy); // Not Implemented
Device(Device const& copy) = delete;
Device& operator=(Device const& copy) = delete;
public: