mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-20 23:17:35 -04:00
Add ability to change an image name in the vfs code by decoupling vfs from a so-called board code. Introduce platforms as a hardware and os abstraction layer for product code. Signed-off-by: Marcin Smoczyński <smoczynski.marcin@gmail.com>
15 lines
313 B
C++
15 lines
313 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;
|
|
};
|
|
} // namespace platform
|