Realistic 3D camera system
3D camera system components
Main Page
Modules
Namespaces
Classes
Files
File List
File Members
asio-1.10.6
include
asio
detail
signal_op.hpp
Go to the documentation of this file.
1
//
2
// detail/signal_op.hpp
3
// ~~~~~~~~~~~~~~~~~~~~
4
//
5
// Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
6
//
7
// Distributed under the Boost Software License, Version 1.0. (See accompanying
8
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9
//
10
11
#ifndef ASIO_DETAIL_SIGNAL_OP_HPP
12
#define ASIO_DETAIL_SIGNAL_OP_HPP
13
14
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
15
# pragma once
16
#endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
17
18
#include "
asio/detail/config.hpp
"
19
#include "
asio/detail/operation.hpp
"
20
21
#include "
asio/detail/push_options.hpp
"
22
23
namespace
asio
{
24
namespace
detail {
25
26
class
signal_op
27
:
public
operation
28
{
29
public
:
30
// The error code to be passed to the completion handler.
31
asio::error_code
ec_
;
32
33
// The signal number to be passed to the completion handler.
34
int
signal_number_
;
35
36
protected
:
37
signal_op
(func_type func)
38
:
operation
(func),
39
signal_number_(0)
40
{
41
}
42
};
43
44
}
// namespace detail
45
}
// namespace asio
46
47
#include "
asio/detail/pop_options.hpp
"
48
49
#endif // ASIO_DETAIL_SIGNAL_OP_HPP
operation.hpp
asio::detail::signal_op::ec_
asio::error_code ec_
Definition:
signal_op.hpp:31
config.hpp
push_options.hpp
asio::detail::signal_op
Definition:
signal_op.hpp:26
pop_options.hpp
asio::detail::signal_op::signal_number_
int signal_number_
Definition:
signal_op.hpp:34
asio::error_code
Class to represent an error code value.
Definition:
error_code.hpp:80
asio::detail::operation
task_io_service_operation operation
Definition:
operation.hpp:32
asio::detail::signal_op::signal_op
signal_op(func_type func)
Definition:
signal_op.hpp:37
asio
Definition:
async_result.hpp:23
Generated by
1.8.11