mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-24 00:49:28 -04:00
17 lines
437 B
C++
17 lines
437 B
C++
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#include "DeveloperModeHelper.hpp"
|
|
#include "ParserUtils.hpp" // for parserFSM
|
|
|
|
namespace parserFSM
|
|
{
|
|
class Context;
|
|
} // namespace parserFSM
|
|
|
|
using namespace parserFSM;
|
|
auto DeveloperModeHelper::processGetRequest(Context &context) -> sys::ReturnCodes
|
|
{
|
|
return sys::ReturnCodes::Unresolved;
|
|
}
|