Merge branch 'devel/master' into sandbox/dkdk/tizen
[platform/core/uifw/dali-adaptor.git] / dali / internal / network / common / socket-factory.h
1 #ifndef DALI_INTERNAL_ADAPTOR_SOCKET_FACTORY_H
2 #define DALI_INTERNAL_ADAPTOR_SOCKET_FACTORY_H
3 /*
4  * Copyright (c) 2019 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20 #include <dali/internal/network/common/socket-factory-interface.h>
21
22 namespace Dali
23 {
24
25 namespace Internal
26 {
27
28 namespace Adaptor
29 {
30
31 /**
32  * @brief concrete implementation of the socket factory interface
33  */
34 class SocketFactory : public SocketFactoryInterface
35 {
36 public:
37
38
39   /**
40    * @brief Constructor
41    */
42   SocketFactory( )
43   {
44   }
45
46   /**
47    * @brief destructor
48    */
49   ~SocketFactory() override
50   {
51   }
52
53   /**
54    * @copydoc SocketFactoryInterface::NewSocket()
55    */
56   SocketInterface* NewSocket( SocketInterface::Protocol protocol  ) override;
57
58   /**
59    * @copydoc SocketFactoryInterface::DestroySocket()
60    */
61   void DestroySocket( SocketInterface* socket  ) override;
62
63 };
64
65 } // Adaptor
66
67 } // Internal
68
69 } // Dali
70
71 #endif // DALI_INTERNAL_ADAPTOR_SOCKET_FACTORY_H