summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMinkyu Kang <mk7.kang@samsung.com>2015-09-23 11:06:27 +0900
committerMinkyu Kang <mk7.kang@samsung.com>2015-09-24 14:28:11 +0900
commit07777eae2cda3d9fdb5feaaa7cd18c6961b218a4 (patch)
tree279f1c48c310bebbebf5127231d131e95c927a29 /include
parent61f71e5e27e939d31362ffd6f36c036f36e3fee1 (diff)
downloadair_mediahub-07777eae2cda3d9fdb5feaaa7cd18c6961b218a4.tar.gz
air_mediahub-07777eae2cda3d9fdb5feaaa7cd18c6961b218a4.tar.bz2
air_mediahub-07777eae2cda3d9fdb5feaaa7cd18c6961b218a4.zip
add location manager for setting location tag to images
Change-Id: I4729dd89321abd90bb349d34a68b87f4ff67b77d Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'include')
-rw-r--r--include/util/locmgr.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/include/util/locmgr.h b/include/util/locmgr.h
new file mode 100644
index 0000000..8b409e4
--- /dev/null
+++ b/include/util/locmgr.h
@@ -0,0 +1,28 @@
+/*
+ * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+*/
+
+#ifndef __AIR_MEDIAHUB_LOCMGR_H__
+#define __AIR_MEDIAHUB_LOCMGR_H__
+
+struct locmgr;
+
+struct locmgr *locmgr_create(void);
+void locmgr_destroy(struct locmgr *m);
+
+bool locmgr_set_location(struct locmgr *m, app_media *am);
+bool locmgr_set_locations(struct locmgr *m, Eina_List *list);
+
+#endif