Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
biboumi
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
88
Issues
88
List
Boards
Labels
Service Desk
Milestones
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
louiz’
biboumi
Commits
12a18ca7
Commit
12a18ca7
authored
Nov 21, 2013
by
louiz’
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
TIL override and final
parent
bfcc9cdc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
src/irc/irc_client.hpp
src/irc/irc_client.hpp
+3
-3
src/xmpp/xmpp_component.hpp
src/xmpp/xmpp_component.hpp
+3
-3
No files found.
src/irc/irc_client.hpp
View file @
12a18ca7
...
...
@@ -30,16 +30,16 @@ public:
/**
* Called when successfully connected to the server
*/
void
on_connected
();
void
on_connected
()
override
final
;
/**
* Close the connection, remove us from the poller
*/
void
on_connection_close
();
void
on_connection_close
()
override
final
;
/**
* Parse the data we have received so far and try to get one or more
* complete messages from it.
*/
void
parse_in_buffer
();
void
parse_in_buffer
()
override
final
;
/**
* Return the channel with this name, create it if it does not yet exist
*/
...
...
src/xmpp/xmpp_component.hpp
View file @
12a18ca7
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment