mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-20 13:04:21 -04:00
18 lines
608 B
C++
18 lines
608 B
C++
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include "Application.hpp"
|
|
#include "OptionWindow.hpp"
|
|
#include <UiCommonActions.hpp>
|
|
|
|
namespace gui::options
|
|
{
|
|
Option call(app::Application *app, app::CallOperation callOperation, const ContactRecord &contact);
|
|
Option contact(app::Application *app,
|
|
app::ContactOperation contactOperation,
|
|
const ContactRecord &contactRec,
|
|
gui::Arrow arrow = gui::Arrow::Disabled);
|
|
} // namespace gui::options
|