Home | History | Annotate | Line # | Download | only in experimental
      1 // <experimental/netfwd> -*- C++ -*-
      2 
      3 // Copyright (C) 2015-2022 Free Software Foundation, Inc.
      4 //
      5 // This file is part of the GNU ISO C++ Library.  This library is free
      6 // software; you can redistribute it and/or modify it under the
      7 // terms of the GNU General Public License as published by the
      8 // Free Software Foundation; either version 3, or (at your option)
      9 // any later version.
     10 
     11 // This library is distributed in the hope that it will be useful,
     12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
     13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     14 // GNU General Public License for more details.
     15 
     16 // Under Section 7 of GPL version 3, you are granted additional
     17 // permissions described in the GCC Runtime Library Exception, version
     18 // 3.1, as published by the Free Software Foundation.
     19 
     20 // You should have received a copy of the GNU General Public License and
     21 // a copy of the GCC Runtime Library Exception along with this program;
     22 // see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
     23 // <http://www.gnu.org/licenses/>.
     24 
     25 /** @file experimental/netfwd
     26  *  This is a TS C++ Library header.
     27  *  @ingroup networking-ts
     28  */
     29 
     30 #ifndef _GLIBCXX_EXPERIMENTAL_NETFWD
     31 #define _GLIBCXX_EXPERIMENTAL_NETFWD 1
     32 
     33 #pragma GCC system_header
     34 
     35 #if __cplusplus >= 201402L
     36 
     37 // #define __cpp_lib_experimental_net 201803
     38 // #define __cpp_lib_experimental_net_extensible 201803
     39 
     40 #include <bits/chrono.h>
     41 
     42 namespace std _GLIBCXX_VISIBILITY(default)
     43 {
     44 _GLIBCXX_BEGIN_NAMESPACE_VERSION
     45 namespace experimental
     46 {
     47 namespace net
     48 {
     49 inline namespace v1
     50 {
     51 
     52   /** @defgroup networking-ts Networking TS
     53    *  @ingroup experimental
     54    *
     55    * ISO/IEC TS 19216:2018	C++ Extensions for Networking
     56    * @{
     57    */
     58 
     59   class execution_context;
     60   template<typename _Tp, typename _Executor>
     61     class executor_binder;
     62   template<typename _Executor>
     63     class executor_work_guard;
     64   class system_executor;
     65   class executor;
     66   template<typename _Executor>
     67     class strand;
     68 
     69   class io_service;
     70 
     71   template<typename _Clock> struct wait_traits;
     72   template<typename _Clock, typename _WaitTraits = wait_traits<_Clock>>
     73     class basic_waitable_timer;
     74   typedef basic_waitable_timer<chrono::system_clock> system_timer;
     75   typedef basic_waitable_timer<chrono::steady_clock> steady_timer;
     76   typedef basic_waitable_timer<chrono::high_resolution_clock>
     77     high_resolution_timer;
     78 
     79   template<typename _Protocol>
     80     class basic_socket;
     81   template<typename _Protocol>
     82     class basic_datagram_socket;
     83   template<typename _Protocol>
     84     class basic_stream_socket;
     85   template<typename _Protocol>
     86     class basic_socket_acceptor;
     87   template<typename _Protocol, typename _Clock = chrono::steady_clock,
     88 	   typename _WaitTraits = wait_traits<_Clock>>
     89     class basic_socket_streambuf;
     90   template<typename _Protocol, typename _Clock = chrono::steady_clock,
     91 	   typename _WaitTraits = wait_traits<_Clock>>
     92     class basic_socket_iostream;
     93 
     94   /// @}
     95 
     96 namespace ip
     97 {
     98   /**
     99    * @addtogroup networking-ts
    100    * @{
    101    */
    102     class address;
    103     class address_v4;
    104     class address_v6;
    105     class address_iterator_v4;
    106     class address_iterator_v6;
    107     class address_range_v4;
    108     class address_range_v6;
    109     class network_v4;
    110     class network_v6;
    111     template<typename _InternetProtocol>
    112       class basic_endpoint;
    113     template<typename _InternetProtocol>
    114       class basic_resolver_entry;
    115     template<typename _InternetProtocol>
    116       class basic_resolver_results;
    117     template<typename _InternetProtocol>
    118       class basic_resolver;
    119     class tcp;
    120     class udp;
    121   /// @}
    122 
    123 } // namespace ip
    124 } // namespace v1
    125 } // namespace net
    126 } // namespace experimental
    127 _GLIBCXX_END_NAMESPACE_VERSION
    128 } // namespace std
    129 
    130 #endif // C++14
    131 
    132 #endif // _GLIBCXX_EXPERIMENTAL_NETFWD
    133