Minor coverity issue fixes
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / rendering / atlas / atlas-manager.h
index 91bb97e..dcbcf27 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_TOOLKIT_ATLAS_MANAGER_H
 
 /*
- * Copyright (c) 2021 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.
@@ -269,6 +269,13 @@ public:
    */
   void SetTextures(AtlasId atlas, TextureSet& textureSet);
 
+public:
+  // Default copy and move operator
+  AtlasManager(const AtlasManager& rhs) = default;
+  AtlasManager(AtlasManager&& rhs)      = default;
+  AtlasManager& operator=(const AtlasManager& rhs) = default;
+  AtlasManager& operator=(AtlasManager&& rhs) = default;
+
 private:
   explicit DALI_INTERNAL AtlasManager(Internal::AtlasManager* impl);
 };