Change-Id: I5e3f147a443846f3d27b64ae6958d398e38e7223
Signed-off-by: sangwan.kwon <sangwan.kwon@samsung.com>
* limitations under the License
*/
-#ifndef __RUNTIME_ARRAY_H__
-#define __RUNTIME_ARRAY_H__
+#ifndef __DPC_ARRAY_H__
+#define __DPC_ARRAY_H__
#include <vector>
#include <utility>
-namespace runtime {
+namespace dpc {
template <typename T>
class Array final {
typename std::vector<T>::iterator it;
};
-} // namespace runtime
+} // namespace dpc
-#endif // __RUNTIME_ARRAY_H__
+#endif // __DPC_ARRAY_H__
return DPM_ERROR_NONE;
}
-typedef runtime::Array<std::string> dpm_password_iterator;
+typedef dpc::Array<std::string> dpm_password_iterator;
EXPORT_API dpm_password_iterator_h dpm_password_create_iterator(device_policy_manager_h handle)
{