mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-21 15:38:23 -04:00
14 lines
298 B
C++
14 lines
298 B
C++
// Copyright (c) 2017-2024, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/blob/master/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include "Commands.hpp"
|
|
#include <at/Cmd.hpp>
|
|
|
|
namespace at
|
|
{
|
|
struct Cmd;
|
|
auto factory(AT at) -> const Cmd &;
|
|
} // namespace at
|