Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
20a8edcf
Commit
20a8edcf
authored
Jan 13, 2010
by
Martin Sustrik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ZMQII-38: Compiler complains about missing virtual constructors
parent
76dbb4f3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
i_endpoint.hpp
src/i_endpoint.hpp
+2
-0
i_inout.hpp
src/i_inout.hpp
+2
-0
No files found.
src/i_endpoint.hpp
View file @
20a8edcf
...
...
@@ -25,6 +25,8 @@ namespace zmq
struct
i_endpoint
{
virtual
~
i_endpoint
()
{}
virtual
void
attach_pipes
(
class
reader_t
*
inpipe_
,
class
writer_t
*
outpipe_
)
=
0
;
virtual
void
detach_inpipe
(
class
reader_t
*
pipe_
)
=
0
;
...
...
src/i_inout.hpp
View file @
20a8edcf
...
...
@@ -29,6 +29,8 @@ namespace zmq
struct
i_inout
{
virtual
~
i_inout
()
{}
// Engine asks to get a message to send to the network.
virtual
bool
read
(
::
zmq_msg_t
*
msg_
)
=
0
;
...
...
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