summaryrefslogtreecommitdiffabout
path: root/include/opkele/discovery.h
Unidiff
Diffstat (limited to 'include/opkele/discovery.h') (more/less context) (show whitespace changes)
-rw-r--r--include/opkele/discovery.h6
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
@@ -19,2 +19,3 @@ namespace opkele {
19 19
20 idiscovery_t() { }
20 idiscovery_t(const string& i) { 21 idiscovery_t(const string& i) {
@@ -30,2 +31,7 @@ namespace opkele {
30 } 31 }
32
33 idiscovery_t& operator=(const string& i) {
34 idiscover(*this,i); return *this; }
35 idiscovery_t& operator=(const char *i) {
36 idiscover(*this,i); return *this; }
31 }; 37 };