5457fff453ab2fd4f4968f6147cfba7f38d3766e
[platform/core/uifw/dali-adaptor.git] / dali / internal / network / common / socket-factory-interface.h
1 #ifndef __DALI_INTERNAL_ADAPTOR_BASE_SOCKET_FACTORY_INTERFACE_H__
2 #define __DALI_INTERNAL_ADAPTOR_BASE_SOCKET_FACTORY_INTERFACE_H__
3
4 /*
5  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 #include <dali/internal/network/common/socket-interface.h>
22
23 namespace Dali
24 {
25 namespace Internal
26 {
27 namespace Adaptor
28 {
29
30 /**
31  * @brief abstract class to create and destroy sockets
32  */
33 class SocketFactoryInterface
34 {
35 public:
36
37   /**
38    * @brief Create a new socket
39    * @param protocol network protocol
40    * @return true on success, false on failure
41    */
42    virtual SocketInterface* NewSocket( SocketInterface::Protocol protocol  ) = 0;
43
44    /**
45     * @brief destroy a socket
46     * @param[in] socket socket to destroy
47     */
48    virtual void DestroySocket( SocketInterface* socket  ) = 0;
49
50 protected:
51
52   /**
53    * @brief Constructor
54    */
55    SocketFactoryInterface( )
56   {
57   }
58
59   /**
60    * @brief Virtual destructor
61    */
62   virtual ~SocketFactoryInterface()
63   {
64   }
65
66 private:
67
68   // Undefined copy constructor.
69   SocketFactoryInterface( const SocketFactoryInterface& );
70
71   // Undefined assignment operator.
72   SocketFactoryInterface& operator=( const SocketFactoryInterface& );
73
74 };
75
76
77
78 } // Adaptor
79 } // Internal
80 } // Dali
81
82 #endif // __DALI_INTERNAL_ADAPTOR_BASE_SOCKET_FACTORY_INTERFACE_H__