2018-03-20 21:00:00 +01:00
|
|
|
using Ryujinx.Core.OsHle.Services;
|
2018-03-19 19:58:46 +01:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Ryujinx.Core.OsHle.Handles
|
|
|
|
{
|
|
|
|
class KSession : IDisposable
|
|
|
|
{
|
|
|
|
public IpcService Service { get; private set; }
|
|
|
|
|
|
|
|
public KSession(IpcService Service)
|
|
|
|
{
|
|
|
|
this.Service = Service;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual void Dispose(bool Disposing)
|
|
|
|
{
|
|
|
|
if (Disposing && Service is IDisposable DisposableService)
|
|
|
|
{
|
|
|
|
DisposableService.Dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|