srv.h 531 B

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