-rw-r--r-- | include/opkele/discovery.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/opkele/discovery.h b/include/opkele/discovery.h index 7865fb2..af4aa29 100644 --- a/include/opkele/discovery.h +++ b/include/opkele/discovery.h @@ -18,4 +18,5 @@ namespace opkele { xrd::XRD_t xrd; + idiscovery_t() { } idiscovery_t(const string& i) { idiscover(*this,i); @@ -29,4 +30,9 @@ namespace opkele { xrd.clear(); } + + idiscovery_t& operator=(const string& i) { + idiscover(*this,i); return *this; } + idiscovery_t& operator=(const char *i) { + idiscover(*this,i); return *this; } }; } |