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

@@ -19,8 +19,8 @@ class Mixer
{
// Private Constructor
Mixer();
Mixer(Mixer const& copy); // Not Implemented
Mixer& operator=(Mixer const& copy); // Not Implemented
Mixer(Mixer const& copy) = delete;
Mixer& operator=(Mixer const& copy) = delete;
public: