|
| 1 | +/** |
| 2 | + * MBLAnonymousEvent.h |
| 3 | + * MetaWear |
| 4 | + * |
| 5 | + * Created by Stephen Schiffli on 9/22/17. |
| 6 | + * Copyright 2017 MbientLab Inc. All rights reserved. |
| 7 | + * |
| 8 | + * IMPORTANT: Your use of this Software is limited to those specific rights |
| 9 | + * granted under the terms of a software license agreement between the user who |
| 10 | + * downloaded the software, his/her employer (which must be your employer) and |
| 11 | + * MbientLab Inc, (the "License"). You may not use this Software unless you |
| 12 | + * agree to abide by the terms of the License which can be found at |
| 13 | + * www.mbientlab.com/terms. The License limits your use, and you acknowledge, |
| 14 | + * that the Software may be modified, copied, and distributed when used in |
| 15 | + * conjunction with an MbientLab Inc, product. Other than for the foregoing |
| 16 | + * purpose, you may not use, reproduce, copy, prepare derivative works of, |
| 17 | + * modify, distribute, perform, display or sell this Software and/or its |
| 18 | + * documentation for any purpose. |
| 19 | + * |
| 20 | + * YOU FURTHER ACKNOWLEDGE AND AGREE THAT THE SOFTWARE AND DOCUMENTATION ARE |
| 21 | + * PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, |
| 22 | + * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY, TITLE, |
| 23 | + * NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL |
| 24 | + * MBIENTLAB OR ITS LICENSORS BE LIABLE OR OBLIGATED UNDER CONTRACT, NEGLIGENCE, |
| 25 | + * STRICT LIABILITY, CONTRIBUTION, BREACH OF WARRANTY, OR OTHER LEGAL EQUITABLE |
| 26 | + * THEORY ANY DIRECT OR INDIRECT DAMAGES OR EXPENSES INCLUDING BUT NOT LIMITED |
| 27 | + * TO ANY INCIDENTAL, SPECIAL, INDIRECT, PUNITIVE OR CONSEQUENTIAL DAMAGES, LOST |
| 28 | + * PROFITS OR LOST DATA, COST OF PROCUREMENT OF SUBSTITUTE GOODS, TECHNOLOGY, |
| 29 | + * SERVICES, OR ANY CLAIMS BY THIRD PARTIES (INCLUDING BUT NOT LIMITED TO ANY |
| 30 | + * DEFENSE THEREOF), OR OTHER SIMILAR COSTS. |
| 31 | + * |
| 32 | + * Should you have any questions regarding your right to use this Software, |
| 33 | + * contact MbientLab via email: hello@mbientlab.com |
| 34 | + */ |
| 35 | + |
| 36 | +#import <MetaWear/MBLEvent.h> |
| 37 | +@class MBLDataSample; |
| 38 | + |
| 39 | +/** |
| 40 | + Pared down variant of the MBLEvent interface that can only be used to |
| 41 | + retrieve logged data from a board that was programmed elsewhere. |
| 42 | + */ |
| 43 | +@interface MBLAnonymousEvent : MBLEvent<MBLDataSample *> |
| 44 | + |
| 45 | +/* |
| 46 | + String identifying the data producer chain |
| 47 | + */ |
| 48 | +@property (nonatomic, readonly, nullable) NSString *identifier; |
| 49 | + |
| 50 | +@end |
0 commit comments