2018-03-25 09:41:00 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "core/hle/kernel/hle_ipc.h"
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
namespace Service::Sockets {
|
2018-03-25 09:41:00 +00:00
|
|
|
|
|
|
|
class NSD final : public ServiceFramework<NSD> {
|
|
|
|
public:
|
|
|
|
explicit NSD(const char* name);
|
|
|
|
~NSD() = default;
|
|
|
|
};
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
} // namespace Service::Sockets
|