aboutsummaryrefslogtreecommitdiffstats
path: root/AFBClient.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'AFBClient.cpp')
-rw-r--r--AFBClient.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/AFBClient.cpp b/AFBClient.cpp
index c4b32db..e67e74b 100644
--- a/AFBClient.cpp
+++ b/AFBClient.cpp
@@ -18,6 +18,16 @@ AFBClient::AFBClient() : itf()
itf.on_event = AFBClient::onEvent;
}
+AFBClient& AFBClient::operator =(const AFBClient &that)
+{
+ itf = that.itf;
+ return *this;
+}
+
+AFBClient::~AFBClient()
+{
+}
+
bool AFBClient::init()
{
/* get the default event loop */