Add Parcel Library
[platform/core/base/bundle.git] / parcel / parcelable.hh
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef PARCEL_PARCELABLE_HH_
18 #define PARCEL_PARCELABLE_HH_
19
20 /**
21  * @addtogroup CORE_LIB_PARCEL_MODULE
22  * @{
23  */
24
25 #include "parcel/common.hh"
26
27 namespace tizen_base {
28
29 class Parcel;
30
31 /**
32  * @brief The Parcelable interface.
33  * @since_tizen 6.5
34  */
35 class EXPORT Parcelable {
36  public:
37   /**
38    * @brief Constructor.
39    * @since_tizen 6.5
40    */
41   Parcelable() = default;
42
43   /**
44    * @brief Copy constructor.
45    * @since_tizen 6.5
46    */
47   Parcelable(const Parcelable&) = default;
48
49   /**
50    * @brief Destructor.
51    * @since_tizen 6.5
52    */
53   virtual ~Parcelable() = default;
54
55   /**
56    * @brief Writes the data into the parcel.
57    * @since_tizen 6.5
58    * @param[in] parcel The parcel object
59    */
60   virtual void WriteToParcel(Parcel* parcel) const = 0;
61
62   /**
63    * @brief Reads the data from the parcel.
64    * @since_tizen 6.5
65    * @param[in] parcel The parcel object
66    */
67   virtual void ReadFromParcel(Parcel* parcel) = 0;
68 };
69
70 }  // naemspace tizen_base
71
72 /**
73  * @}
74  */
75
76 #endif  // PARCEL_PARCELABLE_HH_