From: Maxim Mamontov <faust.madf@gmail.com>
Date: Wed, 14 Sep 2011 14:31:08 +0000 (+0300)
Subject: Hide copy constructor and assignement operator for PLUGIN_CREATOR
X-Git-Tag: 2.408-rc1~61
X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/41a9f8066376f8d86b26f03dcab1128e6c0eec08?ds=inline

Hide copy constructor and assignement operator for PLUGIN_CREATOR
---

diff --git a/include/stg/plugin_creator.h b/include/stg/plugin_creator.h
index d50feb93..755c2068 100644
--- a/include/stg/plugin_creator.h
+++ b/include/stg/plugin_creator.h
@@ -12,6 +12,9 @@ public:
 
 private:
     T * plugin;
+
+    PLUGIN_CREATOR(const PLUGIN_CREATOR<T> & rvalue);
+    PLUGIN_CREATOR<T> & operator=(const PLUGIN_CREATOR<T> & rvalue);
 };
 
 #endif