Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/audaspace/FX/AUD_DoubleFactory.h')
-rw-r--r--intern/audaspace/FX/AUD_DoubleFactory.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/intern/audaspace/FX/AUD_DoubleFactory.h b/intern/audaspace/FX/AUD_DoubleFactory.h
index 03c7de19f06..f2e83b2e27a 100644
--- a/intern/audaspace/FX/AUD_DoubleFactory.h
+++ b/intern/audaspace/FX/AUD_DoubleFactory.h
@@ -45,6 +45,10 @@ private:
*/
AUD_IFactory* m_factory2;
+ // hide copy constructor and operator=
+ AUD_DoubleFactory(const AUD_DoubleFactory&);
+ AUD_DoubleFactory& operator=(const AUD_DoubleFactory&);
+
public:
/**
* Creates a new double factory.
@@ -53,7 +57,7 @@ public:
*/
AUD_DoubleFactory(AUD_IFactory* factory1, AUD_IFactory* factory2);
- virtual AUD_IReader* createReader();
+ virtual AUD_IReader* createReader() const;
};
#endif //AUD_DOUBLEFACTORY