client_session_details.mm 681 B

12345678910111213141516171819202122232425
  1. // Copyright 2017 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #if !defined(__has_feature) || !__has_feature(objc_arc)
  5. #error "This file requires ARC support."
  6. #endif
  7. #import "remoting/ios/domain/client_session_details.h"
  8. #import "remoting/ios/domain/host_info.h"
  9. @implementation ClientSessionDetails
  10. @synthesize hostInfo = _hostInfo;
  11. @synthesize state = _state;
  12. @synthesize error = _error;
  13. - (NSString*)description {
  14. return
  15. [NSString stringWithFormat:@"ClientSessionDetails: state=%d hostInfo=%@",
  16. (int)_state, _hostInfo];
  17. }
  18. @end