mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-06 10:25:05 +01:00
963aedd8cc
Previously there was a split where some of the services were in the Service namespace and others were not.
23 lines
413 B
C++
23 lines
413 B
C++
// Copyright 2016 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
namespace Service {
|
|
namespace ACT {
|
|
|
|
class ACT_A final : public Service::Interface {
|
|
public:
|
|
ACT_A();
|
|
|
|
std::string GetPortName() const override {
|
|
return "act:a";
|
|
}
|
|
};
|
|
|
|
} // namespace ACT
|
|
} // namespace Service
|