srv.h 504 B

12345678910111213141516171819202122
  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. std::string GetPortName() const override {
  13. return "srv:";
  14. }
  15. };
  16. } // namespace