21 lines
400 B
Objective-C
21 lines
400 B
Objective-C
//
|
|
// SUSystemProfiler.h
|
|
// Sparkle
|
|
//
|
|
// Created by Andy Matuschak on 12/22/07.
|
|
// Copyright 2007 Andy Matuschak. All rights reserved.
|
|
//
|
|
|
|
#ifndef SUSYSTEMPROFILER_H
|
|
#define SUSYSTEMPROFILER_H
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class SUHost;
|
|
@interface SUSystemProfiler : NSObject {}
|
|
+ (SUSystemProfiler *)sharedSystemProfiler;
|
|
- (NSMutableArray *)systemProfileArrayForHost:(SUHost *)host;
|
|
@end
|
|
|
|
#endif
|