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 ---------------------- MediaBrowser.Controller/Library/ISearchEngine.cs | 20 +++++++++++++++ 2 files changed, 20 insertions(+), 29 deletions(-) delete mode 100644 MediaBrowser.Controller/Library/ILibrarySearchEngine.cs create mode 100644 MediaBrowser.Controller/Library/ISearchEngine.cs (limited to 'MediaBrowser.Controller/Library') diff --git a/MediaBrowser.Controller/Library/ILibrarySearchEngine.cs b/MediaBrowser.Controller/Library/ILibrarySearchEngine.cs deleted file mode 100644 index ff4dcbe5b..000000000 --- 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); - } -} diff --git a/MediaBrowser.Controller/Library/ISearchEngine.cs b/MediaBrowser.Controller/Library/ISearchEngine.cs new file mode 100644 index 000000000..807d21302 --- /dev/null +++ b/MediaBrowser.Controller/Library/ISearchEngine.cs @@ -0,0 +1,20 @@ +using MediaBrowser.Controller.Entities; +using System.Collections.Generic; +using System.Threading.Tasks; + +namespace MediaBrowser.Controller.Library +{ + /// + /// Interface ILibrarySearchEngine + /// + public interface ISearchEngine + { + /// + /// Gets the search hints. + /// + /// The input items. + /// The search term. + /// Task{IEnumerable{SearchHintInfo}}. + Task> GetSearchHints(IEnumerable inputItems, string searchTerm); + } +} -- cgit v1.2.3