diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-01-21 21:05:37 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-01-21 21:05:37 +0100 |
commit | 90a9f7099f26827644b9fa6d4f386b9cb6e88e92 (patch) | |
tree | 1651808550500e2f1da02c15f95676bddfee9928 | |
parent | b73e13d70477549bfb970fc4fc005473223a4402 (diff) | |
download | dabmux-90a9f7099f26827644b9fa6d4f386b9cb6e88e92.tar.gz dabmux-90a9f7099f26827644b9fa6d4f386b9cb6e88e92.tar.bz2 dabmux-90a9f7099f26827644b9fa6d4f386b9cb6e88e92.zip |
forbid copying a DabInputCompatible
-rw-r--r-- | src/dabInput.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/dabInput.h b/src/dabInput.h index 4ccbac9..56d3fbf 100644 --- a/src/dabInput.h +++ b/src/dabInput.h @@ -66,6 +66,9 @@ class DabInputCompatible : public DabInputBase { virtual ~DabInputCompatible() { m_ops.clean(&args); } + DabInputCompatible& operator=(const DabInputCompatible& other); + DabInputCompatible(const DabInputCompatible& other); + virtual int open(const std::string name) { return m_ops.open(args, name.c_str()); } |