Realistic 3D camera system
3D camera system components
error.hpp
Go to the documentation of this file.
1 //
2 // ssl/error.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_SSL_ERROR_HPP
12 #define ASIO_SSL_ERROR_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/error_code.hpp"
20 
22 
23 namespace asio {
24 namespace error {
25 
27 {
28 };
29 
30 extern ASIO_DECL
32 
33 static const asio::error_category& ssl_category
35 
36 } // namespace error
37 } // namespace asio
38 
39 #if defined(ASIO_HAS_STD_SYSTEM_ERROR)
40 namespace std {
41 
42 template<> struct is_error_code_enum<asio::error::ssl_errors>
43 {
44  static const bool value = true;
45 };
46 
47 } // namespace std
48 #endif // defined(ASIO_HAS_STD_SYSTEM_ERROR)
49 
50 namespace asio {
51 namespace error {
52 
54 {
55  return asio::error_code(
56  static_cast<int>(e), get_ssl_category());
57 }
58 
59 } // namespace error
60 } // namespace asio
61 
63 
64 #if defined(ASIO_HEADER_ONLY)
65 # include "asio/ssl/impl/error.ipp"
66 #endif // defined(ASIO_HEADER_ONLY)
67 
68 #endif // ASIO_SSL_ERROR_HPP
pylon Camera Software Suite for Linux for Use with Basler Gigabit the pylon Viewer and the IP Configurator applications might not be available System I340 and I350 series Although the pylon software will work with any GigE network we would recommend to use one of these adapters USB For U3V devices a USB3 capable USB controller is necessary For best performance and stability we highly recommend a kernel the following settings should be i e
STL namespace.
ASIO_DECL const asio::error_category & get_ssl_category()
Definition: error.ipp:46
Base class for all error categories.
Definition: error_code.hpp:41
Class to represent an error code value.
Definition: error_code.hpp:80
#define ASIO_DECL
Definition: config.hpp:43
asio::error_code make_error_code(basic_errors e)
Definition: error.hpp:297