#include "PresetFactory.hpp" #ifdef DEBUG #include #endif namespace libprojectM { std::string PresetFactory::Protocol(const std::string& url, std::string& path) { auto pos = url.find("://"); if (pos == std::string::npos) { path = url; return {}; } path = url.substr(pos + 3, url.length()); #ifdef DEBUG std::cout << "[PresetFactory] Filename is URL: " << url << std::endl; #endif return url.substr(0, pos); } } // namespace libprojectM