Merge "Update deprecated libprivilege-control API functions." into tizen
[platform/framework/native/appfw.git] / inc / FBaseLongLongComparer.h
index 654f283..722464e 100644 (file)
@@ -29,7 +29,6 @@
 #include <FBaseObject.h>
 #include <FBaseColIComparer.h>
 
-
 namespace Tizen { namespace Base
 {
 /**
@@ -72,36 +71,36 @@ class _OSP_EXPORT_ LongLongComparer
 {
 public:
        /**
-        *      This is the default constructor for this class.
+        * This is the default constructor for this class.
         *
-        *      @since 2.0
+        * @since 2.0
         */
        LongLongComparer(void);
 
        /**
-        *      This destructor overrides Tizen::Base::Object::~Object().
+        * This destructor overrides Tizen::Base::Object::~Object().
         *
-        *      @since 2.0
+        * @since 2.0
         */
        virtual ~LongLongComparer(void);
 
        /**
-        *      Compares two given instances of type LongLong.
+        * Compares two given instances of type LongLong.
         *
-        *      @since 2.0
-        *  @return             An error code
-        *      @param[in]      obj1                    The first instance of type LongLong
-        *      @param[in]      obj2                    The second instance of type LongLong
-        *      @param[out] cmp                         The result of comparison
-        *  @exception  E_SUCCESS               The method is successful.
-        *  @exception  E_INVALID_ARG   The specified object instances are not of the expected type.
-        *      @remarks        The value of @c cmp can be:
+        * @since 2.0
+        * @return              An error code
+        * @param[in]   obj1                    The first instance of type LongLong
+        * @param[in]   obj2                    The second instance of type LongLong
+        * @param[out] cmp                              The result of comparison
+        * @exception   E_SUCCESS               The method is successful.
+        * @exception   E_INVALID_ARG   The specified object instances are not of the expected type.
+        * @remarks     The value of @c cmp can be:
         *
-        *      @code   
+        * @code
         *      <  0  if the value of @c obj1 is less than the value of @c obj2
         *      == 0  if the value of @c obj1 is equal to the value of @c obj2
         *      >  0  if the value of @c obj1 is greater than the value of @c obj2
-        *      @endcode
+        * @endcode
         */
        virtual result Compare(const Tizen::Base::Object& obj1, const Tizen::Base::Object& obj2, int& cmp) const;
 
@@ -118,7 +117,7 @@ private:
        LongLongComparer& operator =(const LongLongComparer& rhs);
 
        friend class _LongLongComparerImpl;
-       class _LongLongComparerImpl * __pLongLongComparerImpl;
+       class _LongLongComparerImpl* __pLongLongComparerImpl;
 
 }; // LongLongComparer