boss_p.h 494 B

1234567891011121314151617181920212223
  1. // Copyright 2015 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #pragma once
  5. #include "core/hle/service/service.h"
  6. ////////////////////////////////////////////////////////////////////////////////////////////////////
  7. // Namespace BOSS_P
  8. namespace BOSS_P {
  9. class Interface : public Service::Interface {
  10. public:
  11. Interface();
  12. std::string GetPortName() const override {
  13. return "boss:P";
  14. }
  15. };
  16. } // namespace