mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-19 14:40:57 -04:00
Added multimedia indexer database. Decided to got with single table approach. User playlist will be implemented as seprate tables when needed.
16 lines
367 B
C++
16 lines
367 B
C++
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include <Database/Database.hpp>
|
|
#include <Tables/MultimediaFilesTable.hpp>
|
|
|
|
class MultimediaFilesDB : public Database
|
|
{
|
|
public:
|
|
explicit MultimediaFilesDB(const char *name);
|
|
|
|
MultimediaFilesTable files;
|
|
};
|