Merge "Add support for FontClient PreCache in candidate process" into devel/master
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / feedback-plugin.h
index 007ac1c..0b016af 100644 (file)
@@ -1,8 +1,8 @@
-#ifndef __DALI_FEEDBACK_PLUGIN_H__
-#define __DALI_FEEDBACK_PLUGIN_H__
+#ifndef DALI_FEEDBACK_PLUGIN_H
+#define DALI_FEEDBACK_PLUGIN_H
 
 /*
- * Copyright (c) 2015 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2020 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 
 // EXTERNAL INCLUDES
 #include <string>
-#include <dali/public-api/common/dali-common.h>
+
+// INTERNAL INCLUDES
+#include <dali/public-api/dali-adaptor-common.h>
 
 namespace Dali
 {
-
 /**
  * FeedbackPlugin is an abstract interface, used by Dali-adaptor to access haptic and audio feedback.
  * A concrete implementation must be created for each platform and provided as a dynamic library which
@@ -33,8 +34,7 @@ namespace Dali
 class FeedbackPlugin
 {
 public:
-
-  typedef void (*SoundStopCallBack)( void* ptr );
+  typedef void (*SoundStopCallBack)(void* ptr);
 
   /**
    * Destructor.
@@ -47,13 +47,13 @@ public:
    * Plays vibration in predefined patterns.
    * @param[in] filePath Path to the file containing the effect.
    */
-  virtual void PlayHaptic( const std::string& filePath ) = 0;
+  virtual void PlayHaptic(const std::string& filePath) = 0;
 
   /**
    * Plays a monotone vibration.
    * @param[in]  duration  The duration of the vibration.
    */
-  virtual void PlayHapticMonotone( unsigned int duration ) = 0;
+  virtual void PlayHapticMonotone(unsigned int duration) = 0;
 
   /**
    * Stops the currently playing vibration effects.
@@ -65,20 +65,20 @@ public:
    * @param[in] fileName Path to the sound file to play.
    * @return A handle which can be used to stop the sound playback.
    */
-  virtual int PlaySound( const std::string& fileName ) = 0;
+  virtual int PlaySound(const std::string& fileName) = 0;
 
   /**
    * Stops a currently playing sound.
    * @param[in] handle A handle to the currently playing sound.
    */
-  virtual void StopSound( int handle ) = 0;
+  virtual void StopSound(int handle) = 0;
 
   /**
    * Plays a feedback pattern.
    * @param[in] type The type of feedback.
    * @param[in] pattern The ID of the pattern to play.
    */
-  virtual void PlayFeedbackPattern( int type, int pattern ) = 0;
+  virtual void PlayFeedbackPattern(int type, int pattern) = 0;
 
   // Types for plugin factories
 
@@ -87,10 +87,10 @@ public:
    * @param [in] pluginName name of the plugin to load.
    * @return Pointer to the newly created plugin object
    */
-  typedef FeedbackPlugin* CreateFeedbackPlugin( void );
+  typedef FeedbackPlugin* CreateFeedbackPlugin(void);
 
 }; // class FeedbackPlugin
 
 } // namespace Dali
 
-#endif // __DALI_FEEDBACK_PLUGIN_H__
+#endif // DALI_FEEDBACK_PLUGIN_H