mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-06-27 01:36:59 -04:00
15 lines
472 B
C++
15 lines
472 B
C++
#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
|