git.stg.codes
/
stg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
03e7dd3
)
Hide copy constructor and assignement operator for PLUGIN_CREATOR
author
Maxim Mamontov
<faust.madf@gmail.com>
Wed, 14 Sep 2011 14:31:08 +0000
(17:31 +0300)
committer
Maxim Mamontov
<faust.madf@gmail.com>
Wed, 14 Sep 2011 14:31:08 +0000
(17:31 +0300)
include/stg/plugin_creator.h
patch
|
blob
|
history
diff --git
a/include/stg/plugin_creator.h
b/include/stg/plugin_creator.h
index d50feb935f3b969e55f926120abc9563b9673e87..755c20686cc8a2cca398be740a9b93a057aea011 100644
(file)
--- 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