summaryrefslogtreecommitdiffstats
path: root/libimagtag/src/check.rs
diff options
context:
space:
mode:
Diffstat (limited to 'libimagtag/src/check.rs')
-rw-r--r--libimagtag/src/check.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/libimagtag/src/check.rs b/libimagtag/src/check.rs
index e69de29b..473df2e4 100644
--- a/libimagtag/src/check.rs
+++ b/libimagtag/src/check.rs
@@ -0,0 +1,14 @@
+
+use libimagstore::store::Entry;
+
+use result::Result;
+use tag::Tag;
+
+pub fn has_tag(e: &Entry, t: &Tag) -> Result<bool> {
+ unimplemented!()
+}
+
+pub fn has_tags(e: &Entry, ts: &Vec<Tag>) -> Result<bool> {
+ unimplemented!()
+}
+