RemoteConsole_none.inl 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. /////////////////////////////////////////////////////////////////////////////////////////////
  9. CRemoteConsole::CRemoteConsole()
  10. : m_listener(1)
  11. , m_lastPortValue(0)
  12. , m_running(false)
  13. {
  14. }
  15. /////////////////////////////////////////////////////////////////////////////////////////////
  16. CRemoteConsole::~CRemoteConsole()
  17. {
  18. }
  19. /////////////////////////////////////////////////////////////////////////////////////////////
  20. void CRemoteConsole::RegisterConsoleVariables()
  21. {
  22. }
  23. /////////////////////////////////////////////////////////////////////////////////////////////
  24. void CRemoteConsole::UnregisterConsoleVariables()
  25. {
  26. }
  27. /////////////////////////////////////////////////////////////////////////////////////////////
  28. void CRemoteConsole::Start()
  29. {
  30. }
  31. /////////////////////////////////////////////////////////////////////////////////////////////
  32. void CRemoteConsole::Stop()
  33. {
  34. }
  35. /////////////////////////////////////////////////////////////////////////////////////////////
  36. void CRemoteConsole::AddLogMessage(AZStd::string_view)
  37. {
  38. }
  39. /////////////////////////////////////////////////////////////////////////////////////////////
  40. void CRemoteConsole::AddLogWarning(AZStd::string_view)
  41. {
  42. }
  43. /////////////////////////////////////////////////////////////////////////////////////////////
  44. void CRemoteConsole::AddLogError(AZStd::string_view)
  45. {
  46. }
  47. /////////////////////////////////////////////////////////////////////////////////////////////
  48. void CRemoteConsole::Update()
  49. {
  50. }
  51. /////////////////////////////////////////////////////////////////////////////////////////////
  52. void CRemoteConsole::RegisterListener(IRemoteConsoleListener*, const char*)
  53. {
  54. }
  55. /////////////////////////////////////////////////////////////////////////////////////////////
  56. void CRemoteConsole::UnregisterListener(IRemoteConsoleListener*)
  57. {
  58. }