mirror of
https://github.com/mudita/MuditaOS.git
synced 2025-12-28 16:38:17 -05:00
* New user directory implemented. * Generate user directory structure at compile time instead of at runtime(Pure/Harmony). * Changed MTP root path to /storage * FileIndexer: Minor refactor * FileIndexer: Fixed handling incorrect/non-existing scan directories. * Updated Repository module to correctly handle many assets paths. * MultimediaDB: Minor unit tests refactor and fixed some issues when using simulator. * MultimediaDB: Added new queries and unit tests * Harmony/Relaxation: Updated to correctly use audio assets from more than one source. * Harmony/Relaxation: Updated model and list items provider. * Harmony/Relaxation: Fixed stack overflow in audio service
16 lines
348 B
C++
16 lines
348 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
|
|
|
|
namespace platform
|
|
{
|
|
class Platform
|
|
{
|
|
public:
|
|
virtual ~Platform() = default;
|
|
virtual void init() = 0;
|
|
virtual void deinit() = 0;
|
|
};
|
|
} // namespace platform
|