]> git.stg.codes - stg.git/commitdiff
Hide copy constructor and assignement operator for PLUGIN_CREATOR
authorMaxim Mamontov <faust.madf@gmail.com>
Wed, 14 Sep 2011 14:31:08 +0000 (17:31 +0300)
committerMaxim Mamontov <faust.madf@gmail.com>
Wed, 14 Sep 2011 14:31:08 +0000 (17:31 +0300)
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