Removal of unnecessary set and map wrappers
[platform/core/uifw/dali-toolkit.git] / plugins / dali-script-v8 / src / garbage-collector / garbage-collector.h
index 24cf638..d28faf3 100644 (file)
@@ -2,7 +2,7 @@
 #define __DALI_V8PLUGIN_GARBAGE_COLLECTOR_H__
 
 /*
- * Copyright (c) 2015 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2017 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 <dali/public-api/common/dali-vector.h>
 
 // INTERNAL INCLUDES
 #include <interfaces/garbage-collector-interface.h>
-#include <dali/devel-api/common/set-wrapper.h>
-
 
 namespace Dali
 {
@@ -64,13 +64,12 @@ public:
    */
   virtual void GarbageCollect();
 
-
 private:
 
   /**
    * Map between dali wrapped object (void *)
    */
-  typedef std::set< BaseWrappedObject* > ObjectMap;
+  typedef Dali::Vector< BaseWrappedObject* > ObjectMap;
   ObjectMap mObjectMap;   ///< lookup
 
 };