Advertisement
Guest User

Untitled

a guest
Oct 9th, 2015
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. #include <string>
  2. #include "FileItem.h"
  3. #include "Application.h"
  4.  
  5.  
  6. class CSubtitleSearch
  7. {
  8. public:
  9. CSubtitleSearch(){}
  10. virtual ~CSubtitleSearch() {}
  11. // virtual bool LogIn() const { return false; }
  12. virtual bool SubtitleSearch(const std::string &path,const std::string strLanguages,
  13. const std::string preferredLanguage,std::vector<std::map<std::string, std::string>> &subtitlesList) const { return false; }
  14. virtual std::string ModuleName() const { return ""; }
  15. virtual bool Download(const std::string subID,const std::string format,std::vector<std::string> &items) const { return false; }
  16. virtual void ChangeUserPass() {}
  17.  
  18. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement