err_f.h 491 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. #pragma once
  5. #include "core/hle/service/service.h"
  6. ////////////////////////////////////////////////////////////////////////////////////////////////////
  7. // Namespace ERR_F
  8. namespace ERR_F {
  9. class Interface : public Service::Interface {
  10. public:
  11. Interface();
  12. std::string GetPortName() const override {
  13. return "err:f";
  14. }
  15. };
  16. } // namespace