| 123456789101112131415161718192021 | #ifndef APRESOLVE_H#define APRESOLVE_H#include <string>class ApResolve {private:    std::string getApList();public:    ApResolve();        /**     * @brief Connects to spotify's servers and returns first valid ap address     *      * @return std::string Address in form of url:port     */    std::string fetchFirstApAddress();};#endif
 |