blob: a391d064064ba85c4ac868922c356d5e60ee06e4 (
plain)
1
2
3
4
5
6
7
8
9
|
#include "../../plugins/Plugin.hpp"
namespace QuickMedia {
SuggestionResult download_result_to_suggestion_result(DownloadResult download_result) { return (SuggestionResult)download_result; }
PluginResult download_result_to_plugin_result(DownloadResult download_result) { return (PluginResult)download_result; }
SearchResult download_result_to_search_result(DownloadResult download_result) { return (SearchResult)download_result; }
ImageResult download_result_to_image_result(DownloadResult download_result) { return (ImageResult)download_result; }
PluginResult search_result_to_plugin_result(SearchResult search_result) { return (PluginResult)search_result; }
}
|