diff options
| -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()); }  | 
