1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-21 02:37:16 +01:00

Make it clear that cmp and shallowDuplicate are virtual.

Fixes #2535
This commit is contained in:
Theron Tock 2011-06-27 13:21:10 -07:00
parent 4621f42319
commit 58f7142e4a

View File

@ -52,8 +52,9 @@ class DynamicGroup : public MultiAddress
static bool makeFilter(std::string &filter, const std::string &type,
const std::string &keyword);
bool cmp(const FWObject *obj, bool recursive=false) throw(FWException);
FWObject& shallowDuplicate(const FWObject *other, bool preserve_id)
virtual bool cmp(const FWObject *obj, bool recursive=false)
throw (FWException);
virtual FWObject& shallowDuplicate(const FWObject *other, bool preserve_id)
throw (FWException);
virtual bool isCompileTime() const;