Fix code for TDIS-5396
[framework/osp/social.git] / src / FScl_RelationshipImpl.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 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         FScl_RelationshipImpl.h
19 * @brief        This is the header file for the %_RelationshipImpl class.
20 *
21 * This header file contains the declarations of the %_RelationshipImpl class.
22 */
23 #ifndef _FSCL_INTERNAL_RELATIONSHIP_IMPL_H_
24 #define _FSCL_INTERNAL_RELATIONSHIP_IMPL_H_
25
26 #include <FBaseResult.h>
27 #include <FBaseObject.h>
28 #include <FBaseString.h>
29 #include <FSclTypes.h>
30
31 namespace Tizen { namespace Social
32 {
33
34 class _OSP_EXPORT_ _RelationshipImpl
35         : public Tizen::Base::Object
36 {
37 public:
38         _RelationshipImpl(void);
39
40         _RelationshipImpl(const _RelationshipImpl& rhs);
41
42         virtual ~_RelationshipImpl(void);
43
44         virtual bool Equals(const Tizen::Base::Object& rhs) const;
45
46         virtual int GetHashCode(void) const;
47
48         RelationshipType GetType(void) const;
49
50         Tizen::Base::String GetRelativeName(void) const;
51
52         Tizen::Base::String GetLabel(void) const;
53
54         void SetType(RelationshipType type);
55
56         void SetLabel(const Tizen::Base::String& label);
57
58         void SetRelativeName(const Tizen::Base::String& relativeName);
59
60         _RelationshipImpl& operator =(const _RelationshipImpl& rhs);
61
62         bool operator ==(const _RelationshipImpl& rhs) const;
63
64         bool operator !=(const _RelationshipImpl& rhs) const;
65
66         static const _RelationshipImpl* GetInstance(const Relationship& relationship);
67
68         static _RelationshipImpl* GetInstance(Relationship& relationship);
69
70 private:
71         RelationshipType __type;
72         Tizen::Base::String __label;
73         Tizen::Base::String __name;
74 }; // _RelationshipImpl
75
76 }} // Tizen::Social
77
78 #endif // _FSCL_INTERNAL_RELATIONSHIP_IMPL_H_