diff OrthancServer/ResourceFinder.h @ 1355:28563d910039

cont
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 13 May 2015 13:16:49 +0200
parents 3dd494f201a1
children
line wrap: on
line diff
--- a/OrthancServer/ResourceFinder.h	Wed May 13 12:17:35 2015 +0200
+++ b/OrthancServer/ResourceFinder.h	Wed May 13 13:16:49 2015 +0200
@@ -48,6 +48,7 @@
     ServerIndex&  index_;
     ResourceType  level_;
     bool          caseSensitive_;
+    bool          nonMainTagsIgnored_;
     Query         query_;
 
     static void ExtractTagsForLevel(Query& result,
@@ -70,6 +71,16 @@
       caseSensitive_ = sensitive;
     }
 
+    bool NonMainTagsIgnored() const
+    {
+      return nonMainTagsIgnored_;
+    }
+
+    void SetNonMainTagsIgnored(bool ignored)
+    {
+      nonMainTagsIgnored_ = ignored;
+    }
+
     ResourceType GetLevel() const
     {
       return level_;