summaryrefslogtreecommitdiff
path: root/idlc/inc/astinterface.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'idlc/inc/astinterface.hxx')
-rw-r--r--idlc/inc/astinterface.hxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/idlc/inc/astinterface.hxx b/idlc/inc/astinterface.hxx
index 7e3e1e30bad6..03c5f22f5f37 100644
--- a/idlc/inc/astinterface.hxx
+++ b/idlc/inc/astinterface.hxx
@@ -49,6 +49,11 @@ public:
AstScope* pScope);
virtual ~AstInterface() override;
+ AstInterface(AstInterface const &) = default;
+ AstInterface(AstInterface &&) = default;
+ AstInterface & operator =(AstInterface const &) = default;
+ AstInterface & operator =(AstInterface &&) = default;
+
InheritedInterfaces const & getAllInheritedInterfaces() const
{ return m_inheritedInterfaces; }