Blame view

BT Vendor/EmmocoMobileFramework/Headers/EMChecksum.h 265 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
//  EMChecksum.h
//  Emmoco
//
//  Created by bob frankel on 8/18/11.
//  Copyright 2011 Emmoco, Inc.. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface EMChecksum : NSObject {

}

- (void)addByte:(int)byte;
- (void)clear;
- (int)sum;

@end