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
e098785c
Commit
e098785c
authored
Jul 22, 2015
by
Marian Triebe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some header guard names
parent
2594a3e5
Changes
30
Hide whitespace changes
Inline
Side-by-side
Showing
30 changed files
with
118 additions
and
113 deletions
+118
-113
libcaf_core/caf/continue_helper.hpp
libcaf_core/caf/continue_helper.hpp
+3
-3
libcaf_core/caf/detail/left_or_right.hpp
libcaf_core/caf/detail/left_or_right.hpp
+3
-3
libcaf_core/caf/detail/logging.hpp
libcaf_core/caf/detail/logging.hpp
+3
-3
libcaf_core/caf/detail/match_case_builder.hpp
libcaf_core/caf/detail/match_case_builder.hpp
+3
-3
libcaf_core/caf/detail/memory_cache_flag_type.hpp
libcaf_core/caf/detail/memory_cache_flag_type.hpp
+3
-3
libcaf_core/caf/detail/pseudo_tuple.hpp
libcaf_core/caf/detail/pseudo_tuple.hpp
+3
-3
libcaf_core/caf/detail/purge_refs.hpp
libcaf_core/caf/detail/purge_refs.hpp
+3
-3
libcaf_core/caf/detail/run_program.hpp
libcaf_core/caf/detail/run_program.hpp
+0
-2
libcaf_core/caf/detail/shared_spinlock.hpp
libcaf_core/caf/detail/shared_spinlock.hpp
+3
-3
libcaf_core/caf/detail/single_reader_queue.hpp
libcaf_core/caf/detail/single_reader_queue.hpp
+3
-3
libcaf_core/caf/detail/singleton_mixin.hpp
libcaf_core/caf/detail/singleton_mixin.hpp
+3
-3
libcaf_core/caf/detail/tail_argument_token.hpp
libcaf_core/caf/detail/tail_argument_token.hpp
+3
-3
libcaf_core/caf/detail/typed_actor_util.hpp
libcaf_core/caf/detail/typed_actor_util.hpp
+3
-3
libcaf_core/caf/detail/uniform_type_info_map.hpp
libcaf_core/caf/detail/uniform_type_info_map.hpp
+3
-3
libcaf_core/caf/execution_unit.hpp
libcaf_core/caf/execution_unit.hpp
+3
-3
libcaf_core/caf/extend.hpp
libcaf_core/caf/extend.hpp
+3
-3
libcaf_core/caf/locks.hpp
libcaf_core/caf/locks.hpp
+3
-3
libcaf_core/caf/may_have_timeout.hpp
libcaf_core/caf/may_have_timeout.hpp
+3
-3
libcaf_core/caf/message_priority.hpp
libcaf_core/caf/message_priority.hpp
+3
-3
libcaf_core/caf/mixin/actor_widget.hpp
libcaf_core/caf/mixin/actor_widget.hpp
+18
-29
libcaf_core/caf/node_id.hpp
libcaf_core/caf/node_id.hpp
+3
-3
libcaf_core/caf/policy/work_sharing.hpp
libcaf_core/caf/policy/work_sharing.hpp
+0
-1
libcaf_core/caf/sb_actor.hpp
libcaf_core/caf/sb_actor.hpp
+3
-3
libcaf_core/caf/shutdown.hpp
libcaf_core/caf/shutdown.hpp
+3
-3
libcaf_core/caf/skip_message.hpp
libcaf_core/caf/skip_message.hpp
+3
-3
libcaf_core/caf/string_algorithms.hpp
libcaf_core/caf/string_algorithms.hpp
+3
-3
libcaf_io/caf/io/accept_handle.hpp
libcaf_io/caf/io/accept_handle.hpp
+3
-3
libcaf_io/caf/io/connection_handle.hpp
libcaf_io/caf/io/connection_handle.hpp
+3
-3
libcaf_io/caf/io/handle.hpp
libcaf_io/caf/io/handle.hpp
+3
-3
libcaf_io/caf/io/receive_policy.hpp
libcaf_io/caf/io/receive_policy.hpp
+22
-3
No files found.
libcaf_core/caf/continue_helper.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CONTINUE_HELPER_HPP
#define CONTINUE_HELPER_HPP
#ifndef C
AF_C
ONTINUE_HELPER_HPP
#define C
AF_C
ONTINUE_HELPER_HPP
#include <functional>
...
...
@@ -49,4 +49,4 @@ private:
}
// namespace caf
#endif // CONTINUE_HELPER_HPP
#endif // C
AF_C
ONTINUE_HELPER_HPP
libcaf_core/caf/detail/left_or_right.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_LEFT_OR_RIGHT_HPP
#define CAF_LEFT_OR_RIGHT_HPP
#ifndef CAF_
DETAIL_
LEFT_OR_RIGHT_HPP
#define CAF_
DETAIL_
LEFT_OR_RIGHT_HPP
#include "caf/unit.hpp"
...
...
@@ -60,4 +60,4 @@ struct if_not_left<unit_t, Right> {
}
// namespace detail
}
// namespace caf
#endif // CAF_LEFT_OR_RIGHT_HPP
#endif // CAF_
DETAIL_
LEFT_OR_RIGHT_HPP
libcaf_core/caf/detail/logging.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_LOGGING_HPP
#define CAF_LOGGING_HPP
#ifndef CAF_
DETAIL_
LOGGING_HPP
#define CAF_
DETAIL_
LOGGING_HPP
#include <thread>
#include <cstring>
...
...
@@ -306,4 +306,4 @@ inline caf::actor_id caf_set_aid_dummy() { return 0; }
#define CAF_LOGF_INFO_IF(stmt, msg) CAF_LOGF_IF(stmt, CAF_INFO, msg)
#define CAF_LOGF_TRACE_IF(stmt, msg) CAF_LOGF_IF(stmt, CAF_TRACE, msg)
#endif // CAF_LOGGING_HPP
#endif // CAF_
DETAIL_
LOGGING_HPP
libcaf_core/caf/detail/match_case_builder.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_DETAIL_M
ESSAGE
_CASE_BUILDER_HPP
#define CAF_DETAIL_M
ESSAGE
_CASE_BUILDER_HPP
#ifndef CAF_DETAIL_M
ATCH
_CASE_BUILDER_HPP
#define CAF_DETAIL_M
ATCH
_CASE_BUILDER_HPP
#include <type_traits>
...
...
@@ -296,4 +296,4 @@ operator||(Left l, Right r) {
}
// namespace detail
}
// namespace caf
#endif // CAF_DETAIL_M
ESSAGE
_CASE_BUILDER_HPP
#endif // CAF_DETAIL_M
ATCH
_CASE_BUILDER_HPP
libcaf_core/caf/detail/memory_cache_flag_type.hpp
View file @
e098785c
...
...
@@ -18,8 +18,8 @@
******************************************************************************/
#ifndef CAF_DETAIL_MEMORY_CACHE_FLAG_TYPE
#define CAF_DETAIL_MEMORY_CACHE_FLAG_TYPE
#ifndef CAF_DETAIL_MEMORY_CACHE_FLAG_TYPE
_HPP
#define CAF_DETAIL_MEMORY_CACHE_FLAG_TYPE
_HPP
namespace
caf
{
namespace
detail
{
...
...
@@ -32,4 +32,4 @@ enum memory_cache_flag_type {
}
// namespace detail
}
// namespace caf
#endif // CAF_DETAIL_MEMORY_CACHE_FLAG_TYPE
#endif // CAF_DETAIL_MEMORY_CACHE_FLAG_TYPE
_HPP
libcaf_core/caf/detail/pseudo_tuple.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_PSEUDO_TUPLE_HPP
#define CAF_PSEUDO_TUPLE_HPP
#ifndef CAF_
DETAIL_
PSEUDO_TUPLE_HPP
#define CAF_
DETAIL_
PSEUDO_TUPLE_HPP
#include <cstddef>
...
...
@@ -63,4 +63,4 @@ typename detail::type_at<N, Ts...>::type& get(detail::pseudo_tuple<Ts...>& tv) {
}
// namespace detail
}
// namespace caf
#endif // CAF_PSEUDO_TUPLE_HPP
#endif // CAF_
DETAIL_
PSEUDO_TUPLE_HPP
libcaf_core/caf/detail/purge_refs.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_PURGE_REFS_HPP
#define CAF_PURGE_REFS_HPP
#ifndef CAF_
DETAIL_
PURGE_REFS_HPP
#define CAF_
DETAIL_
PURGE_REFS_HPP
#include <functional>
...
...
@@ -54,4 +54,4 @@ struct purge_refs {
}
// namespace detail
}
// namespace caf
#endif // CAF_PURGE_REFS_HPP
#endif // CAF_
DETAIL_
PURGE_REFS_HPP
libcaf_core/caf/detail/run_program.hpp
View file @
e098785c
...
...
@@ -30,7 +30,6 @@
#include <string>
namespace
caf
{
namespace
detail
{
std
::
thread
run_program_impl
(
caf
::
actor
,
const
char
*
,
std
::
vector
<
std
::
string
>
);
...
...
@@ -42,7 +41,6 @@ std::thread run_program(caf::actor listener, const char* path, Ts&&... args) {
}
}
// namespace detail
}
// namespace caf
#endif // CAF_DETAIL_RUN_PROGRAM_HPP
libcaf_core/caf/detail/shared_spinlock.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_SHARED_SPINLOCK_HPP
#define CAF_SHARED_SPINLOCK_HPP
#ifndef CAF_
DETAIL_
SHARED_SPINLOCK_HPP
#define CAF_
DETAIL_
SHARED_SPINLOCK_HPP
#include <atomic>
#include <cstddef>
...
...
@@ -53,4 +53,4 @@ public:
}
// namespace detail
}
// namespace caf
#endif // CAF_SHARED_SPINLOCK_HPP
#endif // CAF_
DETAIL_
SHARED_SPINLOCK_HPP
libcaf_core/caf/detail/single_reader_queue.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_SINGLE_READER_QUEUE_HPP
#define CAF_SINGLE_READER_QUEUE_HPP
#ifndef CAF_
DETAIL_
SINGLE_READER_QUEUE_HPP
#define CAF_
DETAIL_
SINGLE_READER_QUEUE_HPP
#include <list>
#include <deque>
...
...
@@ -320,4 +320,4 @@ private:
}
// namespace detail
}
// namespace caf
#endif // CAF_SINGLE_READER_QUEUE_HPP
#endif // CAF_
DETAIL_
SINGLE_READER_QUEUE_HPP
libcaf_core/caf/detail/singleton_mixin.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_SINGLETON_MIXIN_HPP
#define CAF_SINGLETON_MIXIN_HPP
#ifndef CAF_
DETAIL_
SINGLETON_MIXIN_HPP
#define CAF_
DETAIL_
SINGLETON_MIXIN_HPP
#include <utility>
...
...
@@ -92,4 +92,4 @@ protected:
}
// namespace detail
}
// namespace caf
#endif // CAF_SINGLETON_MIXIN_HPP
#endif // CAF_
DETAIL_
SINGLETON_MIXIN_HPP
libcaf_core/caf/detail/tail_argument_token.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_DETAIL_TAIL_ARGUMENT_TOKEN
#define CAF_DETAIL_TAIL_ARGUMENT_TOKEN
#ifndef CAF_DETAIL_TAIL_ARGUMENT_TOKEN
_HPP
#define CAF_DETAIL_TAIL_ARGUMENT_TOKEN
_HPP
namespace
caf
{
namespace
detail
{
...
...
@@ -28,4 +28,4 @@ struct tail_argument_token { };
}
// namespace detail
}
// namespace caf
#endif // CAF_DETAIL_TAIL_ARGUMENT_TOKEN
#endif // CAF_DETAIL_TAIL_ARGUMENT_TOKEN
_HPP
libcaf_core/caf/detail/typed_actor_util.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_TYPED_ACTOR_DETAIL_HPP
#define CAF_TYPED_ACTOR_DETAIL_HPP
#ifndef CAF_
DETAIL_
TYPED_ACTOR_DETAIL_HPP
#define CAF_
DETAIL_
TYPED_ACTOR_DETAIL_HPP
#include <tuple>
...
...
@@ -269,4 +269,4 @@ struct sender_signature_checker<OrigSigs, DestSigs, detail::type_list<>> {
}
// namespace detail
}
// namespace caf
#endif // CAF_TYPED_ACTOR_DETAIL_HPP
#endif // CAF_
DETAIL_
TYPED_ACTOR_DETAIL_HPP
libcaf_core/caf/detail/uniform_type_info_map.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_UNIFORM_TYPE_INFO_MAP_HPP
#define CAF_UNIFORM_TYPE_INFO_MAP_HPP
#ifndef CAF_
DETAIL_
UNIFORM_TYPE_INFO_MAP_HPP
#define CAF_
DETAIL_
UNIFORM_TYPE_INFO_MAP_HPP
#include <set>
#include <map>
...
...
@@ -90,4 +90,4 @@ public:
}
// namespace detail
}
// namespace caf
#endif // CAF_UNIFORM_TYPE_INFO_MAP_HPP
#endif // CAF_
DETAIL_
UNIFORM_TYPE_INFO_MAP_HPP
libcaf_core/caf/execution_unit.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_
DETAIL_
EXECUTION_UNIT_HPP
#define CAF_
DETAIL_
EXECUTION_UNIT_HPP
#ifndef CAF_EXECUTION_UNIT_HPP
#define CAF_EXECUTION_UNIT_HPP
namespace
caf
{
...
...
@@ -40,4 +40,4 @@ public:
}
// namespace caf
#endif // CAF_
DETAIL_
EXECUTION_UNIT_HPP
#endif // CAF_EXECUTION_UNIT_HPP
libcaf_core/caf/extend.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_
MIXE
D_HPP
#define CAF_
MIXE
D_HPP
#ifndef CAF_
EXTEN
D_HPP
#define CAF_
EXTEN
D_HPP
namespace
caf
{
...
...
@@ -57,4 +57,4 @@ struct extend {
}
// namespace caf
#endif // CAF_
MIXE
D_HPP
#endif // CAF_
EXTEN
D_HPP
libcaf_core/caf/locks.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_
DETAIL_
LOCKS_HPP
#define CAF_
DETAIL_
LOCKS_HPP
#ifndef CAF_LOCKS_HPP
#define CAF_LOCKS_HPP
#include <mutex>
...
...
@@ -96,4 +96,4 @@ private:
}
// namespace caf
#endif // CAF_
DETAIL_
LOCKS_HPP
#endif // CAF_LOCKS_HPP
libcaf_core/caf/may_have_timeout.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef MAY_HAVE_TIMEOUT_HPP
#define MAY_HAVE_TIMEOUT_HPP
#ifndef
CAF_
MAY_HAVE_TIMEOUT_HPP
#define
CAF_
MAY_HAVE_TIMEOUT_HPP
namespace
caf
{
...
...
@@ -47,4 +47,4 @@ struct may_have_timeout<timeout_definition<F>> {
}
// namespace caf
#endif // MAY_HAVE_TIMEOUT_HPP
#endif //
CAF_
MAY_HAVE_TIMEOUT_HPP
libcaf_core/caf/message_priority.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef PRIORITY_HPP
#define PRIORITY_HPP
#ifndef
CAF_
PRIORITY_HPP
#define
CAF_
PRIORITY_HPP
#include <cstdint>
...
...
@@ -31,4 +31,4 @@ enum class message_priority : uint32_t {
}
// namespace caf
#endif // PRIORITY_HPP
#endif //
CAF_
PRIORITY_HPP
libcaf_core/caf/mixin/actor_widget.hpp
View file @
e098785c
/******************************************************************************\
* ___ __ *
* /\_ \ __/\ \ *
* \//\ \ /\_\ \ \____ ___ _____ _____ __ *
* \ \ \ \/\ \ \ '__`\ /'___\/\ '__`\/\ '__`\ /'__`\ *
* \_\ \_\ \ \ \ \L\ \/\ \__/\ \ \L\ \ \ \L\ \/\ \L\.\_ *
* /\____\\ \_\ \_,__/\ \____\\ \ ,__/\ \ ,__/\ \__/.\_\ *
* \/____/ \/_/\/___/ \/____/ \ \ \/ \ \ \/ \/__/\/_/ *
* \ \_\ \ \_\ *
* \/_/ \/_/ *
/******************************************************************************
* ____ _ _____ *
* / ___| / \ | ___| C++ *
* | | / _ \ | |_ Actor *
* | |___ / ___ \| _| Framework *
* \____/_/ \_|_| *
* *
* Copyright (C) 2011
-2013
*
* Dominik Charousset <dominik.charousset
@haw-hamburg.de>
*
* Copyright (C) 2011
- 2015
*
* Dominik Charousset <dominik.charousset
(at) haw-hamburg.de>
*
* *
* This file is part of libcaf. *
* libcaf is free software: you can redistribute it and/or modify it under *
* the terms of the GNU Lesser General Public License as published by the *
* Free Software Foundation; either version 2.1 of the License, *
* or (at your option) any later version. *
* Distributed under the terms and conditions of the BSD 3-Clause License or *
* (at your option) under the terms and conditions of the Boost Software *
* License 1.0. See accompanying files LICENSE and LICENSE_ALTERNATIVE. *
* *
* libcaf is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* See the GNU Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public License *
* along with libcaf. If not, see <http://www.gnu.org/licenses/>. *
\******************************************************************************/
* If you did not receive a copy of the license files, see *
* http://opensource.org/licenses/BSD-3-Clause and *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef C
PPA_ACTOR_WIDGET_MIXIN
_HPP
#define C
PPA_ACTOR_WIDGET_MIXIN
_HPP
#ifndef C
AF_MIXIN_ACTOR_WIDGET
_HPP
#define C
AF_MIXIN_ACTOR_WIDGET
_HPP
#include "caf/config.hpp"
#include "caf/make_counted.hpp"
...
...
@@ -94,4 +83,4 @@ private:
}
// namespace mixin
}
// namespace caf
#endif // C
PPA_ACTOR_WIDGET_MIXIN
_HPP
#endif // C
AF_MIXIN_ACTOR_WIDGET
_HPP
libcaf_core/caf/node_id.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_
PROCESS_INFORMATION
_HPP
#define CAF_
PROCESS_INFORMATION
_HPP
#ifndef CAF_
NODE_ID
_HPP
#define CAF_
NODE_ID
_HPP
#include <array>
#include <string>
...
...
@@ -137,4 +137,4 @@ private:
}
// namespace caf
#endif // CAF_
PROCESS_INFORMATION
_HPP
#endif // CAF_
NODE_ID
_HPP
libcaf_core/caf/policy/work_sharing.hpp
View file @
e098785c
...
...
@@ -36,7 +36,6 @@ public:
// A thead-safe queue implementation.
using
queue_type
=
std
::
list
<
resumable
*>
;
// The coordinator has only a counter for round-robin enqueue to its workers.
struct
coordinator_data
{
queue_type
queue
;
std
::
mutex
lock
;
...
...
libcaf_core/caf/sb_actor.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_
FSM
_ACTOR_HPP
#define CAF_
FSM
_ACTOR_HPP
#ifndef CAF_
SB
_ACTOR_HPP
#define CAF_
SB
_ACTOR_HPP
#include <utility>
#include <type_traits>
...
...
@@ -51,4 +51,4 @@ protected:
}
// namespace caf
#endif // CAF_
FSM
_ACTOR_HPP
#endif // CAF_
SB
_ACTOR_HPP
libcaf_core/caf/shutdown.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_
IO_
SHUTDOWN_HPP
#define CAF_
IO_
SHUTDOWN_HPP
#ifndef CAF_SHUTDOWN_HPP
#define CAF_SHUTDOWN_HPP
namespace
caf
{
...
...
@@ -31,4 +31,4 @@ void shutdown();
}
// namespace caf
#endif // CAF_
IO_
SHUTDOWN_HPP
#endif // CAF_SHUTDOWN_HPP
libcaf_core/caf/skip_message.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_
MATCH_HINT
_HPP
#define CAF_
MATCH_HINT
_HPP
#ifndef CAF_
SKIP_MESSAGE
_HPP
#define CAF_
SKIP_MESSAGE
_HPP
#include <ostream>
...
...
@@ -44,4 +44,4 @@ std::ostream& operator<<(std::ostream&, skip_message_t);
}
// namespace caf
#endif // CAF_
MATCH_HINT
_HPP
#endif // CAF_
SKIP_MESSAGE
_HPP
libcaf_core/caf/string_algorithms.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_
UTIL_ALGORITHM
_HPP
#define CAF_
UTIL_ALGORITHM
_HPP
#ifndef CAF_
STRING_ALGORITHMS
_HPP
#define CAF_
STRING_ALGORITHMS
_HPP
#include <cmath> // fabs
#include <string>
...
...
@@ -141,4 +141,4 @@ caf::optional<T> spro(const std::string& str) {
}
// namespace caf
#endif // CAF_
UTIL_ALGORITHM
_HPP
#endif // CAF_
STRING_ALGORITHMS
_HPP
libcaf_io/caf/io/accept_handle.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_ACCEPT_HANDLE_HPP
#define CAF_ACCEPT_HANDLE_HPP
#ifndef CAF_
IO_
ACCEPT_HANDLE_HPP
#define CAF_
IO_
ACCEPT_HANDLE_HPP
#include "caf/io/handle.hpp"
...
...
@@ -45,4 +45,4 @@ private:
}
// namespace ios
}
// namespace caf
#endif // CAF_ACCEPT_HANDLE_HPP
#endif // CAF_
IO_
ACCEPT_HANDLE_HPP
libcaf_io/caf/io/connection_handle.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_CONNECTION_HANDLE_HPP
#define CAF_CONNECTION_HANDLE_HPP
#ifndef CAF_
IO_
CONNECTION_HANDLE_HPP
#define CAF_
IO_
CONNECTION_HANDLE_HPP
#include "caf/io/handle.hpp"
...
...
@@ -44,4 +44,4 @@ private:
}
// namespace io
}
// namespace caf
#endif // CAF_CONNECTION_HANDLE_HPP
#endif // CAF_
IO_
CONNECTION_HANDLE_HPP
libcaf_io/caf/io/handle.hpp
View file @
e098785c
...
...
@@ -17,8 +17,8 @@
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_
DETAIL
_HANDLE_HPP
#define CAF_
DETAIL
_HANDLE_HPP
#ifndef CAF_
IO
_HANDLE_HPP
#define CAF_
IO
_HANDLE_HPP
#include <cstdint>
...
...
@@ -82,4 +82,4 @@ private:
}
// namespace caf
#endif // CAF_
DETAIL
_HANDLE_HPP
#endif // CAF_
IO
_HANDLE_HPP
libcaf_io/caf/io/receive_policy.hpp
View file @
e098785c
#ifndef RECEIVE_POLICY_H
#define RECEIVE_POLICY_H
/******************************************************************************
* ____ _ _____ *
* / ___| / \ | ___| C++ *
* | | / _ \ | |_ Actor *
* | |___ / ___ \| _| Framework *
* \____/_/ \_|_| *
* *
* Copyright (C) 2011 - 2015 *
* Dominik Charousset <dominik.charousset (at) haw-hamburg.de> *
* *
* Distributed under the terms and conditions of the BSD 3-Clause License or *
* (at your option) under the terms and conditions of the Boost Software *
* License 1.0. See accompanying files LICENSE and LICENSE_ALTERNATIVE. *
* *
* If you did not receive a copy of the license files, see *
* http://opensource.org/licenses/BSD-3-Clause and *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_IO_RECEIVE_POLICY_HPP
#define CAF_IO_RECEIVE_POLICY_HPP
#include <cstddef>
#include <utility>
...
...
@@ -43,4 +62,4 @@ public:
}
// namespace io
}
// namespace caf
#endif //
RECEIVE_POLICY_H
#endif //
CAF_IO_RECEIVE_POLICY_HPP
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