suyu/src/core/hle/service/apt/apt_a.h

22 lines
426 B
C
Raw Normal View History

2014-12-21 20:52:10 +01:00
// Copyright 2014 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 APT {
2014-12-21 20:52:10 +01:00
class APT_A_Interface : public Service::Interface {
2014-12-21 20:52:10 +01:00
public:
APT_A_Interface();
2014-12-21 20:52:10 +01:00
std::string GetPortName() const override {
return "APT:A";
}
};
} // namespace APT
} // namespace Service