mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-28 13:43:45 +03:00
3a71748e5d
This was done with CLion's automatic rename feature and with: find . -name ClientConnection.h | rename 's/ClientConnection\.h/ConnectionFromClient.h/' find . -name ClientConnection.cpp | rename 's/ClientConnection\.cpp/ConnectionFromClient.cpp/'
30 lines
820 B
C++
30 lines
820 B
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <Clipboard/ConnectionFromClient.h>
|
|
#include <Clipboard/Storage.h>
|
|
#include <LibCore/EventLoop.h>
|
|
#include <LibCore/System.h>
|
|
#include <LibIPC/MultiServer.h>
|
|
#include <LibMain/Main.h>
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments)
|
|
{
|
|
TRY(Core::System::pledge("stdio recvfd sendfd accept"));
|
|
Core::EventLoop event_loop;
|
|
TRY(Core::System::unveil(nullptr, nullptr));
|
|
|
|
auto server = TRY(IPC::MultiServer<Clipboard::ConnectionFromClient>::try_create());
|
|
|
|
Clipboard::Storage::the().on_content_change = [&] {
|
|
Clipboard::ConnectionFromClient::for_each_client([&](auto& client) {
|
|
client.notify_about_clipboard_change();
|
|
});
|
|
};
|
|
|
|
return event_loop.exec();
|
|
}
|