Fixed issue(DCM-1110)
[platform/framework/native/net.git] / src / inc / FNet_NetExporter.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17 /**
18  * @file                FNet_NetExporter.h
19  * @brief               This is the header file for the %_NetExporter class.
20  */
21
22 #ifndef _FNET_INTERNAL_NET_EXPORTER_H_
23 #define _FNET_INTERNAL_NET_EXPORTER_H_
24
25 #include <FBaseDataType.h>
26 #include <FOspConfig.h>
27
28 namespace Tizen { namespace Net
29 {
30 class NetAccountInfo;
31
32 class _OSP_EXPORT_ _NetExporter
33 {
34 public:
35         static result InitializeNetAccountInfo(NetAccountInfo* pAccountInfo, void* pProfileInfo);
36
37 private:
38         /**
39          * This default constructor is intentionally declared as private because this class is not constructible.
40          */
41         _NetExporter(void);
42
43         /**
44          * This destructor is intentionally declared as private because this class is not constructible.
45          */
46         virtual ~_NetExporter(void);
47
48         /**
49          * The implementation of this copy constructor is intentionally blank and declared as private to prohibit copying of objects.
50          *
51          * @param[in]   rhs             An instance of %_NetExporter
52          */
53         _NetExporter(const _NetExporter& rhs);
54
55         /**
56          * The implementation of this copy assignment operator is intentionally blank and declared as private to prohibit copying of objects.
57          *
58          * @param[in]   rhs                     An instance of %_NetExporter
59          */
60         _NetExporter& operator =(const _NetExporter& rhs);
61 }; // _NetExporter
62
63 } } // Tizen::Net
64
65 #endif //  _FNET_INTERNAL_NET_EXPORTER_H_