Update indentation of class IDBusSignalListener 06/59206/1
authorMu-Woong Lee <muwoong.lee@samsung.com>
Thu, 11 Feb 2016 10:16:42 +0000 (19:16 +0900)
committerMu-Woong Lee <muwoong.lee@samsung.com>
Thu, 11 Feb 2016 10:16:42 +0000 (19:16 +0900)
Change-Id: If6c710e82457a3da16c6563ec35b9024ac1c9495
Signed-off-by: Mu-Woong Lee <muwoong.lee@samsung.com>
include/IDBusSignalListener.h

index 2d87b49..bcff7aa 100644 (file)
 namespace ctx {
 
        class IDBusSignalListener {
-               public:
-                       virtual ~IDBusSignalListener() {}
+       public:
+               virtual ~IDBusSignalListener() {}
 
-                       /**
-                        * @brief       Called when receiving a signal.
-                        * @param[in]   sender  The unique bus name of the sender of the signal.
-                        * @param[in]   path    The object path that the signal was emitted on.
-                        * @param[in]   iface   The name of the interface.
-                        * @param[in]   name    The name of the signal.
-                        * @param[in]   param   A GVariant tuple with parameters of the signal.
-                        */
-                       virtual void onSignal(const char *sender, const char *path, const char *iface, const char *name, GVariant *param) = 0;
+               /**
+                * @brief       Called when receiving a signal.
+                * @param[in]   sender  The unique bus name of the sender of the signal.
+                * @param[in]   path    The object path that the signal was emitted on.
+                * @param[in]   iface   The name of the interface.
+                * @param[in]   name    The name of the signal.
+                * @param[in]   param   A GVariant tuple with parameters of the signal.
+                */
+               virtual void onSignal(const char *sender, const char *path, const char *iface, const char *name, GVariant *param) = 0;
        };
 
 }      /* namespace ctx */