2016-05-18 03:28:25 +02:00
|
|
|
// 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"
|
|
|
|
|
2016-12-10 13:51:50 +01:00
|
|
|
namespace Service {
|
|
|
|
namespace ACT {
|
2016-05-18 03:28:25 +02:00
|
|
|
|
2016-12-10 13:51:50 +01:00
|
|
|
class ACT_A final : public Service::Interface {
|
2016-05-18 03:28:25 +02:00
|
|
|
public:
|
2016-12-10 13:51:50 +01:00
|
|
|
ACT_A();
|
2016-05-18 03:28:25 +02:00
|
|
|
|
|
|
|
std::string GetPortName() const override {
|
|
|
|
return "act:a";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-12-10 13:51:50 +01:00
|
|
|
} // namespace ACT
|
|
|
|
} // namespace Service
|