mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-12 18:59:59 +01:00
C++ improved declaration of singleton managers
This commit is contained in:
@@ -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:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user