public
Description: My OS X Thermometer client.
Clone URL: git://github.com/dustin/osx-thermometer.git
osx-thermometer / LempSource.h
100644 20 lines (14 sloc) 0.307 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// LempSource.h
// Thermometer
//
// Created by Dustin Sallings on 2005/2/9.
// Copyright 2005 Dustin Sallings. All rights reserved.
//
 
#import <AppKit/AppKit.h>
#import "TempSource.h"
 
@interface LempSource : TempSource {
 
}
 
-(NSArray *)initThermList;
-(void)receiveUpdate:(TempReading *)r;
 
@end