From 41a9f8066376f8d86b26f03dcab1128e6c0eec08 Mon Sep 17 00:00:00 2001 From: Maxim Mamontov Date: Wed, 14 Sep 2011 17:31:08 +0300 Subject: [PATCH] Hide copy constructor and assignement operator for PLUGIN_CREATOR --- include/stg/plugin_creator.h | 3 +++ 1 file changed, 3 insertions(+) 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 & rvalue); + PLUGIN_CREATOR & operator=(const PLUGIN_CREATOR & rvalue); }; #endif -- 2.43.2