Ensure BaseHandle class move noexcept (core public-api)
[platform/core/uifw/dali-core.git] / dali / public-api / rendering / texture-set.h
index abdce8c..d53dc58 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_TEXTURE_SET_H
 
 /*
- * Copyright (c) 2020 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2022 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.
@@ -101,7 +101,7 @@ public:
    * @SINCE_1_9.22
    * @param[in] rhs A reference to the moved handle
    */
-  TextureSet(TextureSet&& rhs);
+  TextureSet(TextureSet&& rhs) noexcept;
 
   /**
    * @brief Move assignment operator.
@@ -110,7 +110,7 @@ public:
    * @param[in] rhs A reference to the moved handle
    * @return A reference to this handle
    */
-  TextureSet& operator=(TextureSet&& rhs);
+  TextureSet& operator=(TextureSet&& rhs) noexcept;
 
   /**
    * @brief Sets the texture at position "index".
@@ -154,7 +154,7 @@ public:
    * @SINCE_1_1.43
    * @return The number of textures in the TextureSet
    */
-  size_t GetTextureCount() const;
+  uint32_t GetTextureCount() const;
 
 public:
   /**