mirror of
https://github.com/Almamu/linux-wallpaperengine.git
synced 2025-09-14 05:46:48 +08:00
19 lines
326 B
C++
19 lines
326 B
C++
#include "CVideo.h"
|
|
|
|
#include <utility>
|
|
|
|
using namespace WallpaperEngine::Core;
|
|
|
|
CVideo::CVideo (std::string filename, CProject& project) :
|
|
CWallpaper (Type, project),
|
|
m_filename (std::move(filename))
|
|
{
|
|
}
|
|
|
|
const std::string& CVideo::getFilename ()
|
|
{
|
|
return this->m_filename;
|
|
}
|
|
|
|
const std::string CVideo::Type = "video";
|