Purge underscored header file barriers
[platform/core/uifw/dali-adaptor.git] / dali / internal / network / common / client-send-data-interface.h
1 #ifndef DALI_INTERNAL_ADAPTOR_CLIENT_SEND_DATA_INTERFACE_H
2 #define DALI_INTERNAL_ADAPTOR_CLIENT_SEND_DATA_INTERFACE_H
3
4 /*
5  * Copyright (c) 2019 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 namespace Dali
22 {
23
24 namespace Internal
25 {
26
27 namespace Adaptor
28 {
29
30 /**
31  * @brief  Abstract interface used to transmit data to a client
32  */
33 class ClientSendDataInterface
34 {
35 public:
36
37   /**
38    * @brief Sends data to the client
39    * @param[in] data pointer to some data
40    * @param[in] bufferSizeInBytes how big the buffer is in bytes
41    * @param[in] clientId unique client id to send the data to
42    */
43   virtual void SendData( const char* const data, unsigned int bufferSizeInBytes, unsigned int clientId ) = 0;
44
45
46 protected:
47
48   /**
49    * @brief  Constructor
50    */
51   ClientSendDataInterface()
52   {
53   }
54
55   /**
56    * @brief Virtual Destructor
57    */
58   virtual ~ClientSendDataInterface()
59   {
60   }
61
62 private:
63
64   // Undefined copy constructor.
65   ClientSendDataInterface( const ClientSendDataInterface& );
66
67   // Undefined assignment operator.
68   ClientSendDataInterface& operator=( const ClientSendDataInterface& );
69
70 };
71
72
73 } // namespace Internal
74
75 } // namespace Adaptor
76
77 } // namespace Dali
78
79 #endif // DALI_INTERNAL_ADAPTOR_CLIENT_SEND_DATA_INTERFACE_H