Revert "Revert "Prevent fix""
[platform/framework/native/appfw.git] / inc / FAppPkgIPackageUninstallationResponseListener.h
old mode 100644 (file)
new mode 100755 (executable)
index 2b25b9b..13a53c3
 //
 
 /**
- * @if VISPARTNER-OPERATOR
- * @file       FAppPkgIPackageUninstallationResponseListener.h
+  * @file      FAppPkgIPackageUninstallationResponseListener.h
  * @brief      This is the header file for the %IPackageUninstallationResponseListener interface.
  *
  * This header file contains the declarations of the %IPackageUninstallationResponseListener interface.
  *
- * @endif
  */
 #ifndef _FAPP_PKG_IPACKAGE_UNINSTALLATION_RESPONSE_LISTENER_H_
 #define _FAPP_PKG_IPACKAGE_UNINSTALLATION_RESPONSE_LISTENER_H_
@@ -35,47 +33,38 @@ namespace Tizen { namespace App { namespace Package
 {
 
 /**
- * @if VISPARTNER-OPERATOR
  * @interface  IPackageUninstallationResponseListener
  * @brief              This interface defines a listener for the asynchronous package uninstallation operation.
  *
  * @since      2.0
- * @visibility partner-operator
  *
  * The %IPackageUninstallationResponseListener interface defines a listener for the asynchronous package uninstallation operation.
  *
- * @endif
  */
 class _OSP_EXPORT_ IPackageUninstallationResponseListener
        : virtual public Tizen::Base::Runtime::IEventListener
 {
 public:
        /**
-     * @if VISPARTNER-OPERATOR
      * This polymorphic destructor should be overridden if required.
      * This way, the destructors of the derived classes are called when the destructor of this interface is called.
      *
      * @since  2.0
-     * @visibility  partner-operator\r
-     *\r
-     * @endif
+     *
      */
        virtual ~IPackageUninstallationResponseListener(void) {}
 
-       /**\r
-     * @if VISPARTNER-OPERATOR\r
-     * Called when a package uninstallation is completed. @n\r
+       /**
+     * Called when a package uninstallation is completed. @n
         * The value of @c uninstallationResult is @c true if the uninstallation is successful, else @c false.
-     *\r
-     *@since   2.0\r
-     * @visibility  partner-operator\r
-     *\r
-     * @param[in]      packageId                     The package ID\r
-     * @param[in]      uninstallationResult          Set to @c true if the uninstallation is successful, @n\r
+     *
+     * @since  2.0
+     *
+     * @param[in]      packageId                     The package ID
+     * @param[in]      uninstallationResult          Set to @c true if the uninstallation is successful, @n
         *                                               else @c false
-     *\r
-     * @endif\r
-     */\r
+     *
+     */
        virtual void OnPackageUninstallationResponseReceived(const PackageId& packageId, bool uninstallationResult) = 0;