Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
220fb237
Commit
220fb237
authored
Aug 22, 2019
by
Jakob Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add changes
parent
89e9c143
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
7 deletions
+10
-7
libcaf_core/caf/fwd.hpp
libcaf_core/caf/fwd.hpp
+8
-5
libcaf_core/caf/ipv4_endpoint.hpp
libcaf_core/caf/ipv4_endpoint.hpp
+1
-1
libcaf_core/caf/ipv6_endpoint.hpp
libcaf_core/caf/ipv6_endpoint.hpp
+1
-1
No files found.
libcaf_core/caf/fwd.hpp
View file @
220fb237
...
...
@@ -113,8 +113,10 @@ class group;
class
group_module
;
class
inbound_path
;
class
ipv4_address
;
class
ipv4_endpoint
;
class
ipv4_subnet
;
class
ipv6_address
;
class
ipv6_endpoint
;
class
ipv6_subnet
;
class
local_actor
;
class
mailbox_element
;
...
...
@@ -142,7 +144,8 @@ class uri_builder;
// -- templates with default parameters ----------------------------------------
template
<
class
,
class
=
event_based_actor
>
class
stateful_actor
;
template
<
class
,
class
=
event_based_actor
>
class
stateful_actor
;
// -- structs ------------------------------------------------------------------
...
...
@@ -241,7 +244,6 @@ class abstract_coordinator;
}
// namespace scheduler
// -- OpenSSL classes ----------------------------------------------------------
namespace
openssl
{
...
...
@@ -254,8 +256,10 @@ class manager;
namespace
detail
{
template
<
class
>
class
type_erased_value_impl
;
template
<
class
>
class
stream_distribution_tree
;
template
<
class
>
class
type_erased_value_impl
;
template
<
class
>
class
stream_distribution_tree
;
class
abstract_worker
;
class
abstract_worker_hub
;
...
...
@@ -292,4 +296,3 @@ using type_erased_value_ptr = std::unique_ptr<type_erased_value>;
using
mailbox_element_ptr
=
std
::
unique_ptr
<
mailbox_element
,
detail
::
disposer
>
;
}
// namespace caf
libcaf_core/caf/ipv4_endpoint.hpp
View file @
220fb237
...
...
@@ -25,7 +25,7 @@
namespace
caf
{
/// An IP endpoint that contains an ::ipv4_address and a port.
struct
ipv4_endpoint
:
detail
::
comparable
<
ipv4_endpoint
>
{
class
ipv4_endpoint
:
detail
::
comparable
<
ipv4_endpoint
>
{
public:
// -- constructors -----------------------------------------------------------
...
...
libcaf_core/caf/ipv6_endpoint.hpp
View file @
220fb237
...
...
@@ -25,7 +25,7 @@
namespace
caf
{
/// An IP endpoint that contains an ::ipv6_address and a port.
struct
ipv6_endpoint
:
detail
::
comparable
<
ipv6_endpoint
>
{
class
ipv6_endpoint
:
detail
::
comparable
<
ipv6_endpoint
>
{
public:
// -- constructors -----------------------------------------------------------
...
...
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