From f1a48321755b8015aa121a64afd48818dfcf53ce Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 3 Jan 2014 23:53:49 -0500 Subject: added cast icon to now playing bar to send current media to another client --- .../Library/ILibrarySearchEngine.cs | 29 ---------------------- 1 file changed, 29 deletions(-) delete mode 100644 MediaBrowser.Controller/Library/ILibrarySearchEngine.cs (limited to 'MediaBrowser.Controller/Library/ILibrarySearchEngine.cs') diff --git a/MediaBrowser.Controller/Library/ILibrarySearchEngine.cs b/MediaBrowser.Controller/Library/ILibrarySearchEngine.cs deleted file mode 100644 index ff4dcbe5b3..0000000000 --- a/MediaBrowser.Controller/Library/ILibrarySearchEngine.cs +++ /dev/null @@ -1,29 +0,0 @@ -using MediaBrowser.Controller.Entities; -using System.Collections.Generic; -using System.Threading.Tasks; - -namespace MediaBrowser.Controller.Library -{ - /// - /// Interface ILibrarySearchEngine - /// - public interface ILibrarySearchEngine - { - /// - /// Searches items and returns them in order of relevance. - /// - /// The items. - /// The search term. - /// IEnumerable{BaseItem}. - /// searchTerm - IEnumerable Search(IEnumerable items, string searchTerm); - - /// - /// Gets the search hints. - /// - /// The input items. - /// The search term. - /// Task{IEnumerable{SearchHintInfo}}. - Task> GetSearchHints(IEnumerable inputItems, string searchTerm); - } -} -- cgit v1.2.3