#ifndef COVER_ART_GRABBER_HPP #define COVER_ART_GRABBER_HPP #include "CoverArt.hpp" namespace CoverArt { class Grabber { public: static std::vector getFromTrack(Track::pointer track); static std::vector getFromRelease(Release::pointer release); }; } // namespace CoverArt #endif