Explicitly label class visibility

This commit is contained in:
Alex Barney
2018-12-01 14:38:15 -06:00
parent 3a02739519
commit ad5eb5787c
302 changed files with 308 additions and 308 deletions

View File

@@ -4,7 +4,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Time
{
class IStaticService : IpcService
internal class IStaticService : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@@ -4,7 +4,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Time
{
class ISteadyClock : IpcService
internal class ISteadyClock : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@@ -4,7 +4,7 @@ using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Time
{
class ISystemClock : IpcService
internal class ISystemClock : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@@ -8,7 +8,7 @@ using static Ryujinx.HLE.HOS.ErrorCode;
namespace Ryujinx.HLE.HOS.Services.Time
{
class ITimeZoneService : IpcService
internal class ITimeZoneService : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;

View File

@@ -1,6 +1,6 @@
namespace Ryujinx.HLE.HOS.Services.Time
{
enum SystemClockType
internal enum SystemClockType
{
User,
Network,