// Media File // // Douglas Thrift // // $Id$ #ifndef _MediaFile_hpp_ #define _MediaFile_hpp_ #include #ifdef MENES_PRAGMA_ONCE #pragma once #endif #include struct MediaFile { api::Path path; ext::String artist, title, album, genre; MediaFile(const api::Path& path); MediaFile(const api::Path& path, const ext::String& artist, const ext::String& title, const ext::String& album, const ext::String& genre); }; #endif//_MediaFile_hpp_