Change API version number of WatchApplication class 45/73445/1
authorsuhyung Eom <suhyung.eom@samsung.com>
Wed, 8 Jun 2016 06:51:41 +0000 (15:51 +0900)
committersuhyung Eom <suhyung.eom@samsung.com>
Wed, 8 Jun 2016 06:52:57 +0000 (15:52 +0900)
Signed-off-by: suhyung Eom <suhyung.eom@samsung.com>
Change-Id: I193bb14e5a9f42b6e2187185fbc40fdde88e2bda

adaptors/public-api/adaptor-framework/watch-application.h
adaptors/public-api/adaptor-framework/watch-time.h

index fd6e2b0..1ba7695 100644 (file)
@@ -90,27 +90,27 @@ class WatchApplication;
  * @endcode
  *
  * When the above options are found, they are stripped from argv, and argc is updated appropriately.
- * @SINCE_1_1.36
+ * @SINCE_1_1.37
  */
 
 class DALI_IMPORT_API WatchApplication : public Application
 {
 public:
-  typedef Signal< void (Application&, const WatchTime &) > WatchTimeSignal; ///< Watch pointer signal callback type @SINCE_1_1.36
-  typedef Signal< void (Application&, bool) > WatchBoolSignal; ///< Watch bool signal callback type @SINCE_1_1.36
+  typedef Signal< void (Application&, const WatchTime &) > WatchTimeSignal; ///< Watch pointer signal callback type @SINCE_1_1.37
+  typedef Signal< void (Application&, bool) > WatchBoolSignal; ///< Watch bool signal callback type @SINCE_1_1.37
 
 public:
 
   /**
    * @brief This is the constructor for applications without an argument list.
-   * @SINCE_1_1.36
+   * @SINCE_1_1.37
    */
   static WatchApplication New();
 
   /**
    * @brief This is the constructor for applications.
    *
-   * @SINCE_1_1.36
+   * @SINCE_1_1.37
    * @param[in,out]  argc        A pointer to the number of arguments
    * @param[in,out]  argv        A pointer the the argument list
    */
@@ -119,7 +119,7 @@ public:
   /**
    * @brief This is the constructor for applications with a name
    *
-   * @SINCE_1_1.36
+   * @SINCE_1_1.37
    * @param[in,out]  argc        A pointer to the number of arguments
    * @param[in,out]  argv        A pointer the the argument list
    * @param[in]      stylesheet  The path to user defined theme file
@@ -128,19 +128,19 @@ public:
 
   /**
    * @brief Construct an empty handle
-   * @SINCE_1_1.36
+   * @SINCE_1_1.37
    */
   WatchApplication();
 
   /**
    * @brief Copy Constructor
-   * @SINCE_1_1.36
+   * @SINCE_1_1.37
    */
   WatchApplication( const WatchApplication& implementation );
 
   /**
    * @brief Assignment operator
-   * @SINCE_1_1.36
+   * @SINCE_1_1.37
    */
   WatchApplication& operator=( const WatchApplication& applicaton );
 
@@ -148,7 +148,7 @@ public:
    * @brief Destructor
    *
    * This is non-virtual since derived Handle types must not contain data or virtual methods.
-   * @SINCE_1_1.36
+   * @SINCE_1_1.37
    */
   ~WatchApplication();
 
@@ -160,7 +160,7 @@ public:
    *   void YourCallbackName(Application& application, WatchTimeSignal &time);
    * @endcode
    * time(watch time handle) will not be available after returning this callback. It will be freed by the framework.
-   * @SINCE_1_1.36
+   * @SINCE_1_1.37
    */
   WatchTimeSignal& TimeTickSignal();
 
@@ -171,7 +171,7 @@ public:
    *   void YourCallbackName(Application& application, WatchTimeSignal &time);
    * @endcode
    * time(watch time handle) will not be available after returning this callback. It will be freed by the framework.
-   * @SINCE_1_1.36
+   * @SINCE_1_1.37
    */
   WatchTimeSignal& AmbientTickSignal();
 
@@ -182,14 +182,14 @@ public:
    *   void YourCallbackName(Application& application, bool ambient);
    * @endcode
    * ambient_mode If true the device enters the ambient mode, otherwise false
-   * @SINCE_1_1.36
+   * @SINCE_1_1.37
    */
   WatchBoolSignal& AmbientChangedSignal();
 
 public: // Not intended for application developers
   /**
    * @brief Internal constructor
-   * @SINCE_1_1.36
+   * @SINCE_1_1.37
    */
   explicit DALI_INTERNAL WatchApplication(Internal::Adaptor::WatchApplication* implementation);
 };
index 1aee86c..0dc19e8 100644 (file)
@@ -35,7 +35,7 @@ namespace Dali
  *
  * A WatchTime has a time handle from watch application framework.
  * You can get time(hour, minute, second) on receiving timeTick signal
- * @SINCE_1_1.36
+ * @SINCE_1_1.37
  */
 class DALI_IMPORT_API WatchTime
 {
@@ -43,20 +43,20 @@ public:
 
   /**
    * @brief Constructor
-   * @SINCE_1_1.36
+   * @SINCE_1_1.37
    */
   WatchTime();
 
   /**
    * @brief Destructor
-   * @SINCE_1_1.36
+   * @SINCE_1_1.37
    */
   ~WatchTime();
 
   /**
    * @brief return current hour
    *
-   * @SINCE_1_1.36
+   * @SINCE_1_1.37
    * @pre The WatchTime needs to be initialized.
    */
   int GetHour() const;
@@ -64,7 +64,7 @@ public:
   /**
    * @brief return current hour24
    *
-   * @SINCE_1_1.36
+   * @SINCE_1_1.37
    * @pre The WatchTime needs to be initialized.
    */
   int GetHour24() const;
@@ -72,7 +72,7 @@ public:
   /**
    * @brief return current minute
    *
-   * @SINCE_1_1.36
+   * @SINCE_1_1.37
    * @pre The WatchTime needs to be initialized.
    */
   int GetMinute() const;
@@ -80,7 +80,7 @@ public:
   /**
    * @brief return current second
    *
-   * @SINCE_1_1.36
+   * @SINCE_1_1.37
    * @pre The WatchTime needs to be initialized.
    */
   int GetSecond() const;