From 31b966b9b435cf1e56b30330dc7e091933852fad Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 12 Feb 2016 19:28:20 +0100 Subject: Add check::has_tag{,s}() --- libimagtag/src/check.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'libimagtag') 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 { + unimplemented!() +} + +pub fn has_tags(e: &Entry, ts: &Vec) -> Result { + unimplemented!() +} + -- cgit v1.2.3