diff options
author | Florent Le Coz <louiz@louiz.org> | 2013-11-21 19:38:31 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2013-11-21 19:38:31 +0100 |
commit | 12a18ca748a27111bb24a7f6518f831494e5ca47 (patch) | |
tree | cac6445f7c0e0e2b2b81515e4c3c89bf88546bd8 /src/xmpp | |
parent | bfcc9cdc7462c515c308592735bc661103fb92b5 (diff) | |
download | biboumi-12a18ca748a27111bb24a7f6518f831494e5ca47.tar.gz biboumi-12a18ca748a27111bb24a7f6518f831494e5ca47.tar.bz2 biboumi-12a18ca748a27111bb24a7f6518f831494e5ca47.tar.xz biboumi-12a18ca748a27111bb24a7f6518f831494e5ca47.zip |
TIL override and final
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/xmpp_component.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xmpp/xmpp_component.hpp b/src/xmpp/xmpp_component.hpp index 0c68497..e45c64b 100644 --- a/src/xmpp/xmpp_component.hpp +++ b/src/xmpp/xmpp_component.hpp @@ -20,9 +20,9 @@ class XmppComponent: public SocketHandler public: explicit XmppComponent(const std::string& hostname, const std::string& secret); ~XmppComponent(); - void on_connected(); - void on_connection_close(); - void parse_in_buffer(); + void on_connected() override final; + void on_connection_close() override final; + void parse_in_buffer() override final; /** * Connect to the XMPP server |