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

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