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_SuperposeFactory.h')
-rw-r--r--intern/audaspace/FX/AUD_SuperposeFactory.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/intern/audaspace/FX/AUD_SuperposeFactory.h b/intern/audaspace/FX/AUD_SuperposeFactory.h
index 44e79d76887..a7fde2c182f 100644
--- a/intern/audaspace/FX/AUD_SuperposeFactory.h
+++ b/intern/audaspace/FX/AUD_SuperposeFactory.h
@@ -45,6 +45,10 @@ private:
*/
AUD_IFactory* m_factory2;
+ // hide copy constructor and operator=
+ AUD_SuperposeFactory(const AUD_SuperposeFactory&);
+ AUD_SuperposeFactory& operator=(const AUD_SuperposeFactory&);
+
public:
/**
* Creates a new superpose factory.
@@ -53,7 +57,7 @@ public:
*/
AUD_SuperposeFactory(AUD_IFactory* factory1, AUD_IFactory* factory2);
- virtual AUD_IReader* createReader();
+ virtual AUD_IReader* createReader() const;
};
#endif //AUD_SUPERPOSEFACTORY