]> git.stg.codes - stg.git/blobdiff - include/stg/plugin_creator.h
Hide copy constructor and assignement operator for PLUGIN_CREATOR
[stg.git] / include / stg / plugin_creator.h
index d50feb935f3b969e55f926120abc9563b9673e87..755c20686cc8a2cca398be740a9b93a057aea011 100644 (file)
@@ -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