21 lines
355 B
Objective-C
21 lines
355 B
Objective-C
//
|
|
// Client.m
|
|
// Application
|
|
//
|
|
// Created by Patrick Wardle on 4/30/21.
|
|
// Copyright © 2021 Objective-See. All rights reserved.
|
|
//
|
|
|
|
#import "Client.h"
|
|
|
|
@implementation Client
|
|
|
|
//override description method
|
|
-(NSString*)description
|
|
{
|
|
//description
|
|
return [NSString stringWithFormat:@"CLIENT: pid: %@, path: %@", self.pid, self.path];
|
|
}
|
|
|
|
@end
|