Library
ISOBiodataSample.h
1 //
2 // ISOBiodataSample.h
3 // iSignatureOffice
4 //
5 // Created by Florian Student on 9/5/12.
6 // Copyright (c) 2012 Florian Student. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 @interface ISOBiodataSample : NSObject
12 
13 typedef struct {
14  float timestamp;
15  unsigned short lineNumber;
16  unsigned short x;
17  unsigned short y;
18  unsigned short z;
19 } BiodataSampleStruct;
20 
21 @property (nonatomic, assign) BiodataSampleStruct* sampleStruct;
22 
23 
24 - (id)initWithTimestamp:(float)timestamp lineNumber:(unsigned short)lineNumber point:(CGPoint)point;
25 
26 @end
Definition: ISOBiodataSample.h:11