2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
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
8 // http://www.apache.org/licenses/LICENSE-2.0
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.
18 * @file FBaseLongComparer.h
19 * @brief This is the header file for the %LongComparer class.
21 * @see Long and Tizen::Base::Collection::IComparer
23 * This header file contains the declarations of the %LongComparer class.
25 #ifndef _FBASE_LONG_COMPARER_H_
26 #define _FBASE_LONG_COMPARER_H_
28 #include <FBaseTypes.h>
29 #include <FBaseObject.h>
30 #include <FBaseColIComparer.h>
33 namespace Tizen { namespace Base
37 * @brief This class checks for equivalence between 2 instances of the Long type.
41 * The %LongComparer class checks for equivalence between 2 instances of the Long type.
43 * For more information on the class features, see <a href="../org.tizen.native.appprogramming/html/guide/base/collection_comparison.htm">Collection Comparisons</a>.
45 * The following example demonstrates how to use the %LongComparer class.
51 * using namespace Tizen::Base;
54 * MyClass::LongComparerSample(void)
58 * LongComparer comparer;
61 * comparer.Compare(l1, l2, cmp);
69 class _OSP_EXPORT_ LongComparer
71 , public virtual Tizen::Base::Collection::IComparer
75 * This is the default constructor for this class.
82 * This destructor overrides Tizen::Base::Object::~Object().
86 virtual ~LongComparer(void);
89 * Compares two given instances of type Long.
93 * @return An error code
94 * @param[in] obj1 The first instance of type %Long
95 * @param[in] obj2 The second instance of type %Long
96 * @param[out] cmp The result of comparison
97 * @exception E_SUCCESS The method is successful.
98 * @exception E_INVALID_ARG The specified object instances are not of the expected type.
99 * @remarks The value of @c cmp can be:
102 * < 0 if the value of @c obj1 is less than the value of @c obj2
103 * == 0 if the value of @c obj1 is equal to the value of @c obj2
104 * > 0 if the value of @c obj1 is greater than the value of @c obj2
107 virtual result Compare(const Tizen::Base::Object& obj1, const Tizen::Base::Object& obj2, int& cmp) const;
112 * The implementation of this copy constructor is intentionally blank and declared as private to prohibit copying of objects.
114 LongComparer(const LongComparer& obj);
117 * The implementation of this copy assignment operator is intentionally blank and declared as private to prohibit copying of objects.
119 LongComparer& operator =(const LongComparer& rhs);
121 friend class _LongComparerImpl;
122 class _LongComparerImpl * __pLongComparerImpl;
128 #endif // _FBASE_LONG_COMPARER_H_