Style fix

This commit is contained in:
Kevin Hartman 2015-02-17 20:17:43 -08:00
parent 12a4279177
commit e1008c862d
2 changed files with 19 additions and 10 deletions

View File

@ -1,3 +1,7 @@
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "core/hle/hle.h"
#include "core/hle/service/dlp_srvr.h"
@ -6,10 +10,13 @@
namespace DLP_SRVR {
////////////////////////////////////////////////////////////////////////////////////////////////////
// Interface class
////////////////////////////////////////////////////////////////////////////////////////////////////
// Interface class
Interface::Interface() {
}
const Interface::FunctionInfo FunctionTable[] = {{}};
Interface::Interface() {
Register(FunctionTable);
}
} // namespace

View File

@ -2,6 +2,8 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "core/hle/service/service.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
@ -9,12 +11,12 @@
namespace DLP_SRVR {
/// Interface to "dlp:" service
class Interface : public Service::Interface {
public:
Interface();
/// Interface to "dlp:" service
class Interface : public Service::Interface {
public:
Interface();
std::string GetPortName() const override {
std::string GetPortName() const override {
return "dlp:SRVR";
}
};