summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/client_port.cpp
blob: 5df769c6a1fd243d0bfdca21bfb5788e063718d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "common/assert.h"

#include "core/hle/kernel/client_port.h"
#include "core/hle/kernel/kernel.h"
#include "core/hle/kernel/server_port.h"

namespace Kernel {

ClientPort::ClientPort() {
}
ClientPort::~ClientPort() {
}

} // namespace