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
82853dc5
Commit
82853dc5
authored
Jan 03, 2012
by
neverlord
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
renamed event_based_actor_mixin to event_based_actor_base
parent
2acbbcf9
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
9 deletions
+9
-9
Makefile.am
Makefile.am
+1
-1
cppa.files
cppa.files
+1
-1
cppa/event_based_actor.hpp
cppa/event_based_actor.hpp
+3
-3
cppa/event_based_actor_base.hpp
cppa/event_based_actor_base.hpp
+1
-1
cppa/stacked_event_based_actor.hpp
cppa/stacked_event_based_actor.hpp
+3
-3
No files found.
Makefile.am
View file @
82853dc5
...
@@ -89,7 +89,7 @@ nobase_library_include_HEADERS = \
...
@@ -89,7 +89,7 @@ nobase_library_include_HEADERS = \
cppa/cppa.hpp
\
cppa/cppa.hpp
\
cppa/deserializer.hpp
\
cppa/deserializer.hpp
\
cppa/event_based_actor.hpp
\
cppa/event_based_actor.hpp
\
cppa/event_based_actor_
mixin
.hpp
\
cppa/event_based_actor_
base
.hpp
\
cppa/abstract_event_based_actor.hpp
\
cppa/abstract_event_based_actor.hpp
\
cppa/detail/abstract_tuple.hpp
\
cppa/detail/abstract_tuple.hpp
\
cppa/detail/actor_count.hpp
\
cppa/detail/actor_count.hpp
\
...
...
cppa.files
View file @
82853dc5
...
@@ -238,7 +238,7 @@ cppa/event_based_actor.hpp
...
@@ -238,7 +238,7 @@ cppa/event_based_actor.hpp
src/event_based_actor.cpp
src/event_based_actor.cpp
cppa/stacked_event_based_actor.hpp
cppa/stacked_event_based_actor.hpp
src/stacked_event_based_actor.cpp
src/stacked_event_based_actor.cpp
cppa/event_based_actor_
mixin
.hpp
cppa/event_based_actor_
base
.hpp
cppa/fsm_actor.hpp
cppa/fsm_actor.hpp
cppa/self.hpp
cppa/self.hpp
src/self.cpp
src/self.cpp
...
...
cppa/event_based_actor.hpp
View file @
82853dc5
...
@@ -32,14 +32,14 @@
...
@@ -32,14 +32,14 @@
#define EVENT_BASED_ACTOR_HPP
#define EVENT_BASED_ACTOR_HPP
#include "cppa/behavior.hpp"
#include "cppa/behavior.hpp"
#include "cppa/event_based_actor_
mixin
.hpp"
#include "cppa/event_based_actor_
base
.hpp"
namespace
cppa
{
namespace
cppa
{
class
event_based_actor
:
public
event_based_actor_
mixin
<
event_based_actor
>
class
event_based_actor
:
public
event_based_actor_
base
<
event_based_actor
>
{
{
friend
class
event_based_actor_
mixin
<
event_based_actor
>
;
friend
class
event_based_actor_
base
<
event_based_actor
>
;
typedef
abstract_event_based_actor
::
stack_element
stack_element
;
typedef
abstract_event_based_actor
::
stack_element
stack_element
;
...
...
cppa/event_based_actor_
mixin
.hpp
→
cppa/event_based_actor_
base
.hpp
View file @
82853dc5
...
@@ -37,7 +37,7 @@
...
@@ -37,7 +37,7 @@
namespace
cppa
{
namespace
cppa
{
template
<
typename
Derived
>
template
<
typename
Derived
>
class
event_based_actor_
mixin
:
public
abstract_event_based_actor
class
event_based_actor_
base
:
public
abstract_event_based_actor
{
{
typedef
abstract_event_based_actor
super
;
typedef
abstract_event_based_actor
super
;
...
...
cppa/stacked_event_based_actor.hpp
View file @
82853dc5
...
@@ -31,14 +31,14 @@
...
@@ -31,14 +31,14 @@
#ifndef STACKED_EVENT_BASED_ACTOR_HPP
#ifndef STACKED_EVENT_BASED_ACTOR_HPP
#define STACKED_EVENT_BASED_ACTOR_HPP
#define STACKED_EVENT_BASED_ACTOR_HPP
#include "cppa/event_based_actor_
mixin
.hpp"
#include "cppa/event_based_actor_
base
.hpp"
namespace
cppa
{
namespace
cppa
{
class
stacked_event_based_actor
:
public
event_based_actor_
mixin
<
stacked_event_based_actor
>
class
stacked_event_based_actor
:
public
event_based_actor_
base
<
stacked_event_based_actor
>
{
{
friend
class
event_based_actor_
mixin
<
stacked_event_based_actor
>
;
friend
class
event_based_actor_
base
<
stacked_event_based_actor
>
;
typedef
abstract_event_based_actor
::
stack_element
stack_element
;
typedef
abstract_event_based_actor
::
stack_element
stack_element
;
...
...
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