Add IPC sync result for SerialPort::Write()
[platform/framework/native/appfw.git] / inc / FBaseDoubleMatrix4.h
index cdeb76e..8dccc11 100644 (file)
@@ -1,5 +1,4 @@
 //
-// Open Service Platform
 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
 //
 // Licensed under the Apache License, Version 2.0 (the License);
@@ -22,7 +21,6 @@
  * This header file contains the declarations of the %DoubleMatrix4 class.
  *
  */
-
 #ifndef _FBASE_DOUBLE_MATRIX4_H_
 #define _FBASE_DOUBLE_MATRIX4_H_
 
@@ -83,8 +81,8 @@ public:
         *
         * @since 2.0
         *
-        * @return      @c true if all matrix members of the current instance are equal to the corresponding matrix members in the specified instance, @n
-        *                      else @c false
+        * @return              @c true if all matrix members of the current instance are equal to the corresponding matrix members in the specified instance, @n
+        *                              else @c false
         * @param[in]   rhs     An instance of %DoubleMatrix4
         */
        bool operator ==(const DoubleMatrix4& rhs) const;
@@ -94,8 +92,8 @@ public:
         *
         * @since 2.0
         *
-        * @return      @c true if all matrix members of the current instance are not equal to the corresponding matrix members in the specified instance, @n
-        *                      else @c false
+        * @return              @c true if all matrix members of the current instance are not equal to the corresponding matrix members in the specified instance, @n
+        *                              else @c false
         * @param[in]   rhs     An instance of %DoubleMatrix4
         */
        bool operator !=(const DoubleMatrix4& rhs) const;
@@ -105,7 +103,7 @@ public:
         *
         * @since 2.0
         *
-        * @return      The reference to this instance
+        * @return              The reference to this instance
         * @param[in]   rhs     An instance of %DoubleMatrix4
         */
        DoubleMatrix4& operator =(const DoubleMatrix4& rhs);
@@ -115,7 +113,7 @@ public:
         *
         * @since 2.0
         *
-        * @return      The reference to this instance
+        * @return              The reference to this instance
         * @param[in]   value   A @c double value to assign
         */
        DoubleMatrix4& operator =(double value);
@@ -125,7 +123,7 @@ public:
         *
         * @since 2.0
         *
-        * @return      A new instance of %DoubleMatrix4 containing the resulting value of the operation
+        * @return              A new instance of %DoubleMatrix4 containing the resulting value of the operation
         * @param[in]   rhs     An instance of %DoubleMatrix4
         */
        DoubleMatrix4 operator *(const DoubleMatrix4& rhs) const;
@@ -135,7 +133,7 @@ public:
         *
         * @since 2.0
         *
-        * @return      A new instance of %DoubleMatrix4 containing the resulting value of the operation
+        * @return              A new instance of %DoubleMatrix4 containing the resulting value of the operation
         * @param[in]   value   A @c double value to multiply
         */
        DoubleMatrix4 operator *(double value) const;
@@ -145,7 +143,7 @@ public:
         *
         * @since 2.0
         *
-        * @return      A new instance of %DoubleMatrix4 containing the resulting value of the operation
+        * @return              A new instance of %DoubleMatrix4 containing the resulting value of the operation
         * @param[in]   rhs     An instance of %DoubleMatrix4
         */
        DoubleMatrix4 operator +(const DoubleMatrix4& rhs) const;
@@ -155,7 +153,7 @@ public:
         *
         * @since 2.0
         *
-        * @return      A new instance of %DoubleMatrix4 containing the resulting value of the operation
+        * @return              A new instance of %DoubleMatrix4 containing the resulting value of the operation
         * @param[in]   value   A @c double value to add
         */
        DoubleMatrix4 operator +(double value) const;
@@ -165,7 +163,7 @@ public:
         *
         * @since 2.0
         *
-        * @return      A new instance of %DoubleMatrix4 containing the resulting value of the operation
+        * @return              A new instance of %DoubleMatrix4 containing the resulting value of the operation
         * @param[in]   rhs     An instance of %DoubleMatrix4
         */
        DoubleMatrix4 operator -(const DoubleMatrix4& rhs) const;
@@ -175,7 +173,7 @@ public:
         *
         * @since 2.0
         *
-        * @return      A new instance of %DoubleMatrix4 containing the resulting value of the operation
+        * @return              A new instance of %DoubleMatrix4 containing the resulting value of the operation
         * @param[in]   value   A @c double value to subtract
         */
        DoubleMatrix4 operator -(double value) const;
@@ -185,7 +183,7 @@ public:
         *
         * @since 2.0
         *
-        * @return      The reference to %DoubleMatrix4 containing the resulting value of the operation
+        * @return              The reference to %DoubleMatrix4 containing the resulting value of the operation
         * @param[in]   rhs     An instance of %DoubleMatrix4
         */
        DoubleMatrix4& operator *=(const DoubleMatrix4& rhs);
@@ -195,7 +193,7 @@ public:
         *
         * @since 2.0
         *
-        * @return      The reference to %DoubleMatrix4 containing the resulting value of the operation
+        * @return              The reference to %DoubleMatrix4 containing the resulting value of the operation
         * @param[in]   value   A @c double value to multiply
         */
        DoubleMatrix4& operator *=(double value);
@@ -205,7 +203,7 @@ public:
         *
         * @since 2.0
         *
-        * @return      The reference to %DoubleMatrix4 containing the resulting value of the operation
+        * @return              The reference to %DoubleMatrix4 containing the resulting value of the operation
         * @param[in]   rhs     An instance of %DoubleMatrix4
         */
        DoubleMatrix4& operator +=(const DoubleMatrix4& rhs);
@@ -215,7 +213,7 @@ public:
         *
         * @since 2.0
         *
-        * @return      The reference to %DoubleMatrix4 containing the resulting value of the operation
+        * @return              The reference to %DoubleMatrix4 containing the resulting value of the operation
         * @param[in]   value   A @c double value to add
         */
        DoubleMatrix4& operator +=(double value);
@@ -225,7 +223,7 @@ public:
         *
         * @since 2.0
         *
-        * @return      The reference to %DoubleMatrix4 containing the resulting value of the operation
+        * @return              The reference to %DoubleMatrix4 containing the resulting value of the operation
         * @param[in]   rhs     An instance of %DoubleMatrix4
         */
        DoubleMatrix4& operator -=(const DoubleMatrix4& rhs);
@@ -235,7 +233,7 @@ public:
         *
         * @since 2.0
         *
-        * @return      The reference to %DoubleMatrix4 containing the resulting value of the operation
+        * @return              The reference to %DoubleMatrix4 containing the resulting value of the operation
         * @param[in]   value   A @c double value to subtract
         */
        DoubleMatrix4& operator -=(double value);
@@ -245,7 +243,7 @@ public:
         *
         * @since 2.0
         *
-        * @return      A new instance of %DoubleMatrix4 containing the resulting value of the operation
+        * @return              A new instance of %DoubleMatrix4 containing the resulting value of the operation
         * @param[in]   value   A @c double value to add
         * @param[in]   rhs     An instance of %DoubleMatrix4
         */
@@ -256,7 +254,7 @@ public:
         *
         * @since 2.0
         *
-        * @return      A new instance of %DoubleMatrix4 containing the resulting value of the operation
+        * @return              A new instance of %DoubleMatrix4 containing the resulting value of the operation
         * @param[in]   value   A @c double value to multiply
         * @param[in]   rhs     An instance of %DoubleMatrix4
         */
@@ -267,7 +265,7 @@ public:
         *
         * @since 2.0
         *
-        * @return      A new instance of %DoubleMatrix4 containing the resulting value of the operation
+        * @return              A new instance of %DoubleMatrix4 containing the resulting value of the operation
         * @param[in]   value   A @c double value to subtract
         * @param[in]   rhs     An instance of %DoubleMatrix4
         */
@@ -278,10 +276,10 @@ public:
         *
         * @since 2.0
         *
-        * @return      @c true if the values of the current instance is equal to the value of the specified instance, @n
-        *                      else @c false
+        * @return              @c true if the values of the current instance is equal to the value of the specified instance, @n
+        *                              else @c false
         * @param[in]   obj     An instance of %DoubleMatrix4
-        * @remarks     This method overrides Tizen::Base::Object::Equals(). This method uses the values of the Matrix components to compare the two instances.
+        * @remarks             This method overrides Tizen::Base::Object::Equals(). This method uses the values of the Matrix components to compare the two instances.
         */
        virtual bool Equals(const Tizen::Base::Object& obj) const;
 
@@ -290,8 +288,8 @@ public:
         *
         * @since 2.0
         *
-        * @return      The hash value of the current instance
-        * @remarks     Two equal instances must return the same hash value. For better performance,
+        * @return              The hash value of the current instance
+        * @remarks             Two equal instances must return the same hash value. For better performance,
         *                              the used hash function must generate a random distribution for all inputs.
         */
        virtual int GetHashCode(void) const;
@@ -301,7 +299,7 @@ public:
         *
         * @since 2.0
         *
-        * @return      The determinant value of the current instance
+        * @return              The determinant value of the current instance
         */
        double GetDeterminant(void) const;
 
@@ -310,8 +308,8 @@ public:
         *
         * @since 2.0
         *
-        * @return      A new instance of %DoubleMatrix4 containing the resulting value of the operation
-        * @remarks     This function must be called after checking whether the matrix is invertible or not.
+        * @return              A new instance of %DoubleMatrix4 containing the resulting value of the operation
+        * @remarks             This function must be called after checking whether the matrix is invertible or not.
         */
        DoubleMatrix4 GetInverse(void) const;
 
@@ -320,7 +318,7 @@ public:
         *
         * @since 2.0
         *
-        * @return      The trace of the current instance
+        * @return              The trace of the current instance
         */
        double GetTrace(void) const;
 
@@ -329,7 +327,7 @@ public:
         *
         * @since 2.0
         *
-        * @return      A new instance of %DoubleMatrix4 containing the resulting value of the operation
+        * @return              A new instance of %DoubleMatrix4 containing the resulting value of the operation
         */
        DoubleMatrix4 GetTranspose(void) const;
 
@@ -338,8 +336,8 @@ public:
         *
         * @since 2.0
         *
-        * @return      @c true if the matrix is an identity matrix, @n
-        *                      else @c false
+        * @return              @c true if the matrix is an identity matrix, @n
+        *                              else @c false
         */
        bool IsIdentity(void) const;
 
@@ -348,8 +346,8 @@ public:
         *
         * @since 2.0
         *
-        * @return      @c true if the matrix is invertible, @n
-        *                      else @c false
+        * @return              @c true if the matrix is invertible, @n
+        *                              else @c false
         */
        bool IsInvertible(void) const;
 
@@ -397,7 +395,7 @@ public:
         *
         * @since 2.0
         *
-        * @remarks     The column-major order matrix.
+        * @remarks             The column-major order matrix.
         */
        double matrix[4][4];
 
@@ -406,7 +404,5 @@ private:
        class _DoubleMatrix4Impl* __pImpl;
 
 }; // DoubleMatrix4
-
 }} // Tizen::Base
-
-#endif //_FBASE_DOUBLE_MATRIX4_H_
+#endif //_FBASE_DOUBLE_MATRIX4_H_
\ No newline at end of file