├── .gitignore ├── design ├── 3d_model │ ├── left_insole_004_flat.stl │ └── right_insole_004_flat.stl ├── 53.jpg ├── app_exports │ ├── credentials.png │ ├── home.png │ ├── menu.png │ ├── profile.png │ ├── result-balance.png │ ├── result-forces.png │ ├── result-resume.png │ ├── session.png │ ├── teaser.png │ └── track.png ├── app_icon │ ├── 120x120.png │ ├── 180x180.png │ ├── 58x58.png │ ├── 80x80.png │ ├── 87x87.png │ ├── app-icon.png │ └── app-icon.psd ├── app_mockups │ ├── balance-mockup.png │ ├── teaser-mockup.png │ └── track-mockup.png ├── assets │ ├── menu.png │ ├── menu@2x.png │ └── sensmove.jpg ├── fonts │ ├── Roboto-Light.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-Regular.ttf │ └── varela round.otf ├── graphic_kit │ ├── Icon │ ├── charte_v01.pdf │ ├── logo_negatif_strap.png │ ├── logo_nostrap.png │ ├── logo_nostrap_fond.jpg │ ├── logo_strap.jpg │ ├── logo_strap.png │ └── vectoriel │ │ ├── Icon │ │ ├── logo_negatif_strap.svg │ │ └── logo_strap.svg ├── landing_page.jpg ├── landing_page.png ├── logo.png ├── sensmove-app.psd ├── sole.ai ├── splashscreen.jpg ├── splashscreen.psd ├── splashscreen_exports │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-Portrait-736h@3x.png │ ├── Default-Portrait.png │ ├── Default-Portrait@2x.png │ ├── Default.png │ └── Default@2x.png └── splashscreen_min.jpg ├── documentation ├── electronic_design_schema.png ├── hardware_environment.md ├── how_to_craft_insole.md ├── index.md ├── ios_environment.md ├── prototype_sensmove.jpg └── source │ └── electronic_design.fzz ├── hardware_development ├── install.sh ├── libraries │ ├── Adafruit_BLE_UART │ │ ├── Adafruit_BLE_UART.cpp │ │ ├── Adafruit_BLE_UART.h │ │ ├── README.md │ │ ├── examples │ │ │ ├── callbackEcho │ │ │ │ └── callbackEcho.ino │ │ │ └── echoDemo │ │ │ │ └── echoDemo.ino │ │ └── utility │ │ │ ├── aci.h │ │ │ ├── aci_cmds.h │ │ │ ├── aci_evts.h │ │ │ ├── aci_protocol_defines.h │ │ │ ├── aci_setup.cpp │ │ │ ├── aci_setup.h │ │ │ ├── acilib.cpp │ │ │ ├── acilib.h │ │ │ ├── acilib_defs.h │ │ │ ├── acilib_if.h │ │ │ ├── acilib_types.h │ │ │ ├── ble_system.h │ │ │ ├── dtm.h │ │ │ ├── hal │ │ │ ├── hal_aci_tl.h │ │ │ └── hal_io.h │ │ │ ├── hal_aci_tl.cpp │ │ │ ├── hal_platform.h │ │ │ ├── lib_aci.cpp │ │ │ ├── lib_aci.h │ │ │ └── uart │ │ │ ├── UART_over_BLE.xml │ │ │ ├── services.h │ │ │ └── ublue_setup.gen.out.txt │ ├── Adafruit_LSM303DLHC-master │ │ ├── .gitignore │ │ ├── Adafruit_LSM303_U.cpp │ │ ├── Adafruit_LSM303_U.h │ │ ├── README.md │ │ └── examples │ │ │ ├── accelsensor │ │ │ └── accelsensor.pde │ │ │ └── magsensor │ │ │ └── magsensor.pde │ ├── Adafruit_Sensor-master │ │ ├── Adafruit_Sensor.cpp │ │ ├── Adafruit_Sensor.h │ │ └── README.md │ ├── SMBLEApplication │ │ ├── SMBLEApplication.cpp │ │ └── SMBLEApplication.h │ ├── SMDataManager │ │ ├── SMDataManager.cpp │ │ └── SMDataManager.h │ ├── SMSdCardManager │ │ ├── SMSdCardManager.cpp │ │ └── SMSdCardManager.h │ └── Time-master │ │ ├── DateStrings.cpp │ │ ├── Readme.txt │ │ ├── Time.cpp │ │ ├── Time.h │ │ ├── examples │ │ ├── Processing │ │ │ └── SyncArduinoClock │ │ │ │ ├── SyncArduinoClock.pde │ │ │ │ └── readme.txt │ │ ├── TimeArduinoDue │ │ │ └── TimeArduinoDue.ino │ │ ├── TimeGPS │ │ │ └── TimeGPS.ino │ │ ├── TimeNTP │ │ │ └── TimeNTP.ino │ │ ├── TimeRTC │ │ │ └── TimeRTC.pde │ │ ├── TimeRTCLog │ │ │ └── TimeRTCLog.pde │ │ ├── TimeRTCSet │ │ │ └── TimeRTCSet.ino │ │ ├── TimeSerial │ │ │ └── TimeSerial.ino │ │ ├── TimeSerialDateStrings │ │ │ └── TimeSerialDateStrings.ino │ │ └── TimeTeensy3 │ │ │ └── TimeTeensy3.ino │ │ ├── keywords.txt │ │ ├── library.json │ │ └── library.properties ├── poc │ ├── FSR │ │ └── sensmove_fsr_poc.ino │ ├── SD_Card │ │ ├── sensmove_sdcard_cardInfo │ │ │ └── sensmove_sdcard_cardInfo.ino │ │ ├── sensmove_sdcard_readData │ │ │ └── sensmove_sdcard_readData.ino │ │ └── sensmove_sdcard_writeData │ │ │ └── sensmove_sdcard_writeData.ino │ ├── accelerometer │ │ └── accelerometer.ino │ ├── bluetooth_LE │ │ ├── readme.md │ │ └── sensmove_ble_poc.ino │ ├── double_FSR │ │ └── sensmove_double_fsr.ino │ └── force_visualisation │ │ └── sens_dataviz_pde │ │ ├── sens_dataviz_pde.pde │ │ └── sketch.properties └── program │ └── program.ino ├── ios_development ├── SMPOCChart │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ │ ├── Headers │ │ │ ├── Private │ │ │ │ ├── PNChart │ │ │ │ │ ├── PNBar.h │ │ │ │ │ ├── PNBarChart.h │ │ │ │ │ ├── PNChart.h │ │ │ │ │ ├── PNChartDelegate.h │ │ │ │ │ ├── PNChartLabel.h │ │ │ │ │ ├── PNCircleChart.h │ │ │ │ │ ├── PNColor.h │ │ │ │ │ ├── PNGenericChart.h │ │ │ │ │ ├── PNLineChart.h │ │ │ │ │ ├── PNLineChartData.h │ │ │ │ │ ├── PNLineChartDataItem.h │ │ │ │ │ ├── PNPieChart.h │ │ │ │ │ ├── PNPieChartDataItem.h │ │ │ │ │ ├── PNScatterChart.h │ │ │ │ │ ├── PNScatterChartData.h │ │ │ │ │ └── PNScatterChartDataItem.h │ │ │ │ ├── ReactiveCocoa │ │ │ │ │ ├── MKAnnotationView+RACSignalSupport.h │ │ │ │ │ ├── NSArray+RACSequenceAdditions.h │ │ │ │ │ ├── NSData+RACSupport.h │ │ │ │ │ ├── NSDictionary+RACSequenceAdditions.h │ │ │ │ │ ├── NSEnumerator+RACSequenceAdditions.h │ │ │ │ │ ├── NSFileHandle+RACSupport.h │ │ │ │ │ ├── NSIndexSet+RACSequenceAdditions.h │ │ │ │ │ ├── NSInvocation+RACTypeParsing.h │ │ │ │ │ ├── NSNotificationCenter+RACSupport.h │ │ │ │ │ ├── NSObject+RACDeallocating.h │ │ │ │ │ ├── NSObject+RACDescription.h │ │ │ │ │ ├── NSObject+RACKVOWrapper.h │ │ │ │ │ ├── NSObject+RACLifting.h │ │ │ │ │ ├── NSObject+RACPropertySubscribing.h │ │ │ │ │ ├── NSObject+RACSelectorSignal.h │ │ │ │ │ ├── NSOrderedSet+RACSequenceAdditions.h │ │ │ │ │ ├── NSSet+RACSequenceAdditions.h │ │ │ │ │ ├── NSString+RACKeyPathUtilities.h │ │ │ │ │ ├── NSString+RACSequenceAdditions.h │ │ │ │ │ ├── NSString+RACSupport.h │ │ │ │ │ ├── NSURLConnection+RACSupport.h │ │ │ │ │ ├── NSUserDefaults+RACSupport.h │ │ │ │ │ ├── RACArraySequence.h │ │ │ │ │ ├── RACBehaviorSubject.h │ │ │ │ │ ├── RACBlockTrampoline.h │ │ │ │ │ ├── RACChannel.h │ │ │ │ │ ├── RACCommand.h │ │ │ │ │ ├── RACCompoundDisposable.h │ │ │ │ │ ├── RACDelegateProxy.h │ │ │ │ │ ├── RACDisposable.h │ │ │ │ │ ├── RACDynamicSequence.h │ │ │ │ │ ├── RACDynamicSignal.h │ │ │ │ │ ├── RACEXTKeyPathCoding.h │ │ │ │ │ ├── RACEXTRuntimeExtensions.h │ │ │ │ │ ├── RACEXTScope.h │ │ │ │ │ ├── RACEagerSequence.h │ │ │ │ │ ├── RACEmptySequence.h │ │ │ │ │ ├── RACEmptySignal.h │ │ │ │ │ ├── RACErrorSignal.h │ │ │ │ │ ├── RACEvent.h │ │ │ │ │ ├── RACGroupedSignal.h │ │ │ │ │ ├── RACImmediateScheduler.h │ │ │ │ │ ├── RACIndexSetSequence.h │ │ │ │ │ ├── RACKVOChannel.h │ │ │ │ │ ├── RACKVOProxy.h │ │ │ │ │ ├── RACKVOTrampoline.h │ │ │ │ │ ├── RACMulticastConnection+Private.h │ │ │ │ │ ├── RACMulticastConnection.h │ │ │ │ │ ├── RACObjCRuntime.h │ │ │ │ │ ├── RACPassthroughSubscriber.h │ │ │ │ │ ├── RACQueueScheduler+Subclass.h │ │ │ │ │ ├── RACQueueScheduler.h │ │ │ │ │ ├── RACReplaySubject.h │ │ │ │ │ ├── RACReturnSignal.h │ │ │ │ │ ├── RACScheduler+Private.h │ │ │ │ │ ├── RACScheduler+Subclass.h │ │ │ │ │ ├── RACScheduler.h │ │ │ │ │ ├── RACScopedDisposable.h │ │ │ │ │ ├── RACSequence.h │ │ │ │ │ ├── RACSerialDisposable.h │ │ │ │ │ ├── RACSignal+Operations.h │ │ │ │ │ ├── RACSignal.h │ │ │ │ │ ├── RACSignalSequence.h │ │ │ │ │ ├── RACStream+Private.h │ │ │ │ │ ├── RACStream.h │ │ │ │ │ ├── RACStringSequence.h │ │ │ │ │ ├── RACSubject.h │ │ │ │ │ ├── RACSubscriber+Private.h │ │ │ │ │ ├── RACSubscriber.h │ │ │ │ │ ├── RACSubscriptingAssignmentTrampoline.h │ │ │ │ │ ├── RACSubscriptionScheduler.h │ │ │ │ │ ├── RACTargetQueueScheduler.h │ │ │ │ │ ├── RACTestScheduler.h │ │ │ │ │ ├── RACTuple.h │ │ │ │ │ ├── RACTupleSequence.h │ │ │ │ │ ├── RACUnarySequence.h │ │ │ │ │ ├── RACUnit.h │ │ │ │ │ ├── RACValueTransformer.h │ │ │ │ │ ├── RACmetamacros.h │ │ │ │ │ ├── ReactiveCocoa.h │ │ │ │ │ ├── UIActionSheet+RACSignalSupport.h │ │ │ │ │ ├── UIAlertView+RACSignalSupport.h │ │ │ │ │ ├── UIBarButtonItem+RACCommandSupport.h │ │ │ │ │ ├── UIButton+RACCommandSupport.h │ │ │ │ │ ├── UICollectionReusableView+RACSignalSupport.h │ │ │ │ │ ├── UIControl+RACSignalSupport.h │ │ │ │ │ ├── UIControl+RACSignalSupportPrivate.h │ │ │ │ │ ├── UIDatePicker+RACSignalSupport.h │ │ │ │ │ ├── UIGestureRecognizer+RACSignalSupport.h │ │ │ │ │ ├── UIImagePickerController+RACSignalSupport.h │ │ │ │ │ ├── UIRefreshControl+RACCommandSupport.h │ │ │ │ │ ├── UISegmentedControl+RACSignalSupport.h │ │ │ │ │ ├── UISlider+RACSignalSupport.h │ │ │ │ │ ├── UIStepper+RACSignalSupport.h │ │ │ │ │ ├── UISwitch+RACSignalSupport.h │ │ │ │ │ ├── UITableViewCell+RACSignalSupport.h │ │ │ │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.h │ │ │ │ │ ├── UITextField+RACSignalSupport.h │ │ │ │ │ └── UITextView+RACSignalSupport.h │ │ │ │ └── UICountingLabel │ │ │ │ │ └── UICountingLabel.h │ │ │ └── Public │ │ │ │ ├── PNChart │ │ │ │ ├── PNBar.h │ │ │ │ ├── PNBarChart.h │ │ │ │ ├── PNChart.h │ │ │ │ ├── PNChartDelegate.h │ │ │ │ ├── PNChartLabel.h │ │ │ │ ├── PNCircleChart.h │ │ │ │ ├── PNColor.h │ │ │ │ ├── PNGenericChart.h │ │ │ │ ├── PNLineChart.h │ │ │ │ ├── PNLineChartData.h │ │ │ │ ├── PNLineChartDataItem.h │ │ │ │ ├── PNPieChart.h │ │ │ │ ├── PNPieChartDataItem.h │ │ │ │ ├── PNScatterChart.h │ │ │ │ ├── PNScatterChartData.h │ │ │ │ └── PNScatterChartDataItem.h │ │ │ │ ├── ReactiveCocoa │ │ │ │ ├── MKAnnotationView+RACSignalSupport.h │ │ │ │ ├── NSArray+RACSequenceAdditions.h │ │ │ │ ├── NSData+RACSupport.h │ │ │ │ ├── NSDictionary+RACSequenceAdditions.h │ │ │ │ ├── NSEnumerator+RACSequenceAdditions.h │ │ │ │ ├── NSFileHandle+RACSupport.h │ │ │ │ ├── NSIndexSet+RACSequenceAdditions.h │ │ │ │ ├── NSInvocation+RACTypeParsing.h │ │ │ │ ├── NSNotificationCenter+RACSupport.h │ │ │ │ ├── NSObject+RACDeallocating.h │ │ │ │ ├── NSObject+RACDescription.h │ │ │ │ ├── NSObject+RACKVOWrapper.h │ │ │ │ ├── NSObject+RACLifting.h │ │ │ │ ├── NSObject+RACPropertySubscribing.h │ │ │ │ ├── NSObject+RACSelectorSignal.h │ │ │ │ ├── NSOrderedSet+RACSequenceAdditions.h │ │ │ │ ├── NSSet+RACSequenceAdditions.h │ │ │ │ ├── NSString+RACKeyPathUtilities.h │ │ │ │ ├── NSString+RACSequenceAdditions.h │ │ │ │ ├── NSString+RACSupport.h │ │ │ │ ├── NSURLConnection+RACSupport.h │ │ │ │ ├── NSUserDefaults+RACSupport.h │ │ │ │ ├── RACArraySequence.h │ │ │ │ ├── RACBehaviorSubject.h │ │ │ │ ├── RACBlockTrampoline.h │ │ │ │ ├── RACChannel.h │ │ │ │ ├── RACCommand.h │ │ │ │ ├── RACCompoundDisposable.h │ │ │ │ ├── RACDelegateProxy.h │ │ │ │ ├── RACDisposable.h │ │ │ │ ├── RACDynamicSequence.h │ │ │ │ ├── RACDynamicSignal.h │ │ │ │ ├── RACEXTKeyPathCoding.h │ │ │ │ ├── RACEXTRuntimeExtensions.h │ │ │ │ ├── RACEXTScope.h │ │ │ │ ├── RACEagerSequence.h │ │ │ │ ├── RACEmptySequence.h │ │ │ │ ├── RACEmptySignal.h │ │ │ │ ├── RACErrorSignal.h │ │ │ │ ├── RACEvent.h │ │ │ │ ├── RACGroupedSignal.h │ │ │ │ ├── RACImmediateScheduler.h │ │ │ │ ├── RACIndexSetSequence.h │ │ │ │ ├── RACKVOChannel.h │ │ │ │ ├── RACKVOProxy.h │ │ │ │ ├── RACKVOTrampoline.h │ │ │ │ ├── RACMulticastConnection.h │ │ │ │ ├── RACObjCRuntime.h │ │ │ │ ├── RACPassthroughSubscriber.h │ │ │ │ ├── RACQueueScheduler+Subclass.h │ │ │ │ ├── RACQueueScheduler.h │ │ │ │ ├── RACReplaySubject.h │ │ │ │ ├── RACReturnSignal.h │ │ │ │ ├── RACScheduler+Subclass.h │ │ │ │ ├── RACScheduler.h │ │ │ │ ├── RACScopedDisposable.h │ │ │ │ ├── RACSequence.h │ │ │ │ ├── RACSerialDisposable.h │ │ │ │ ├── RACSignal+Operations.h │ │ │ │ ├── RACSignal.h │ │ │ │ ├── RACSignalSequence.h │ │ │ │ ├── RACStream.h │ │ │ │ ├── RACStringSequence.h │ │ │ │ ├── RACSubject.h │ │ │ │ ├── RACSubscriber.h │ │ │ │ ├── RACSubscriptingAssignmentTrampoline.h │ │ │ │ ├── RACSubscriptionScheduler.h │ │ │ │ ├── RACTargetQueueScheduler.h │ │ │ │ ├── RACTestScheduler.h │ │ │ │ ├── RACTuple.h │ │ │ │ ├── RACTupleSequence.h │ │ │ │ ├── RACUnarySequence.h │ │ │ │ ├── RACUnit.h │ │ │ │ ├── RACValueTransformer.h │ │ │ │ ├── RACmetamacros.h │ │ │ │ ├── ReactiveCocoa.h │ │ │ │ ├── UIActionSheet+RACSignalSupport.h │ │ │ │ ├── UIAlertView+RACSignalSupport.h │ │ │ │ ├── UIBarButtonItem+RACCommandSupport.h │ │ │ │ ├── UIButton+RACCommandSupport.h │ │ │ │ ├── UICollectionReusableView+RACSignalSupport.h │ │ │ │ ├── UIControl+RACSignalSupport.h │ │ │ │ ├── UIControl+RACSignalSupportPrivate.h │ │ │ │ ├── UIDatePicker+RACSignalSupport.h │ │ │ │ ├── UIGestureRecognizer+RACSignalSupport.h │ │ │ │ ├── UIImagePickerController+RACSignalSupport.h │ │ │ │ ├── UIRefreshControl+RACCommandSupport.h │ │ │ │ ├── UISegmentedControl+RACSignalSupport.h │ │ │ │ ├── UISlider+RACSignalSupport.h │ │ │ │ ├── UIStepper+RACSignalSupport.h │ │ │ │ ├── UISwitch+RACSignalSupport.h │ │ │ │ ├── UITableViewCell+RACSignalSupport.h │ │ │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.h │ │ │ │ ├── UITextField+RACSignalSupport.h │ │ │ │ └── UITextView+RACSignalSupport.h │ │ │ │ └── UICountingLabel │ │ │ │ └── UICountingLabel.h │ │ ├── Manifest.lock │ │ ├── PNChart │ │ │ ├── LICENSE │ │ │ ├── PNChart │ │ │ │ ├── PNBar.h │ │ │ │ ├── PNBar.m │ │ │ │ ├── PNBarChart.h │ │ │ │ ├── PNBarChart.m │ │ │ │ ├── PNChart.h │ │ │ │ ├── PNChartDelegate.h │ │ │ │ ├── PNChartLabel.h │ │ │ │ ├── PNChartLabel.m │ │ │ │ ├── PNCircleChart.h │ │ │ │ ├── PNCircleChart.m │ │ │ │ ├── PNColor.h │ │ │ │ ├── PNColor.m │ │ │ │ ├── PNGenericChart.h │ │ │ │ ├── PNGenericChart.m │ │ │ │ ├── PNLineChart.h │ │ │ │ ├── PNLineChart.m │ │ │ │ ├── PNLineChartData.h │ │ │ │ ├── PNLineChartData.m │ │ │ │ ├── PNLineChartDataItem.h │ │ │ │ ├── PNLineChartDataItem.m │ │ │ │ ├── PNPieChart.h │ │ │ │ ├── PNPieChart.m │ │ │ │ ├── PNPieChartDataItem.h │ │ │ │ ├── PNPieChartDataItem.m │ │ │ │ ├── PNScatterChart.h │ │ │ │ ├── PNScatterChart.m │ │ │ │ ├── PNScatterChartData.h │ │ │ │ ├── PNScatterChartData.m │ │ │ │ ├── PNScatterChartDataItem.h │ │ │ │ └── PNScatterChartDataItem.m │ │ │ └── README.md │ │ ├── Pods.xcodeproj │ │ │ └── project.pbxproj │ │ ├── ReactiveCocoa │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── ReactiveCocoa │ │ │ │ ├── MKAnnotationView+RACSignalSupport.h │ │ │ │ ├── MKAnnotationView+RACSignalSupport.m │ │ │ │ ├── NSArray+RACSequenceAdditions.h │ │ │ │ ├── NSArray+RACSequenceAdditions.m │ │ │ │ ├── NSData+RACSupport.h │ │ │ │ ├── NSData+RACSupport.m │ │ │ │ ├── NSDictionary+RACSequenceAdditions.h │ │ │ │ ├── NSDictionary+RACSequenceAdditions.m │ │ │ │ ├── NSEnumerator+RACSequenceAdditions.h │ │ │ │ ├── NSEnumerator+RACSequenceAdditions.m │ │ │ │ ├── NSFileHandle+RACSupport.h │ │ │ │ ├── NSFileHandle+RACSupport.m │ │ │ │ ├── NSIndexSet+RACSequenceAdditions.h │ │ │ │ ├── NSIndexSet+RACSequenceAdditions.m │ │ │ │ ├── NSInvocation+RACTypeParsing.h │ │ │ │ ├── NSInvocation+RACTypeParsing.m │ │ │ │ ├── NSNotificationCenter+RACSupport.h │ │ │ │ ├── NSNotificationCenter+RACSupport.m │ │ │ │ ├── NSObject+RACDeallocating.h │ │ │ │ ├── NSObject+RACDeallocating.m │ │ │ │ ├── NSObject+RACDescription.h │ │ │ │ ├── NSObject+RACDescription.m │ │ │ │ ├── NSObject+RACKVOWrapper.h │ │ │ │ ├── NSObject+RACKVOWrapper.m │ │ │ │ ├── NSObject+RACLifting.h │ │ │ │ ├── NSObject+RACLifting.m │ │ │ │ ├── NSObject+RACPropertySubscribing.h │ │ │ │ ├── NSObject+RACPropertySubscribing.m │ │ │ │ ├── NSObject+RACSelectorSignal.h │ │ │ │ ├── NSObject+RACSelectorSignal.m │ │ │ │ ├── NSOrderedSet+RACSequenceAdditions.h │ │ │ │ ├── NSOrderedSet+RACSequenceAdditions.m │ │ │ │ ├── NSSet+RACSequenceAdditions.h │ │ │ │ ├── NSSet+RACSequenceAdditions.m │ │ │ │ ├── NSString+RACKeyPathUtilities.h │ │ │ │ ├── NSString+RACKeyPathUtilities.m │ │ │ │ ├── NSString+RACSequenceAdditions.h │ │ │ │ ├── NSString+RACSequenceAdditions.m │ │ │ │ ├── NSString+RACSupport.h │ │ │ │ ├── NSString+RACSupport.m │ │ │ │ ├── NSURLConnection+RACSupport.h │ │ │ │ ├── NSURLConnection+RACSupport.m │ │ │ │ ├── NSUserDefaults+RACSupport.h │ │ │ │ ├── NSUserDefaults+RACSupport.m │ │ │ │ ├── RACArraySequence.h │ │ │ │ ├── RACArraySequence.m │ │ │ │ ├── RACBehaviorSubject.h │ │ │ │ ├── RACBehaviorSubject.m │ │ │ │ ├── RACBlockTrampoline.h │ │ │ │ ├── RACBlockTrampoline.m │ │ │ │ ├── RACChannel.h │ │ │ │ ├── RACChannel.m │ │ │ │ ├── RACCommand.h │ │ │ │ ├── RACCommand.m │ │ │ │ ├── RACCompoundDisposable.h │ │ │ │ ├── RACCompoundDisposable.m │ │ │ │ ├── RACCompoundDisposableProvider.d │ │ │ │ ├── RACDelegateProxy.h │ │ │ │ ├── RACDelegateProxy.m │ │ │ │ ├── RACDisposable.h │ │ │ │ ├── RACDisposable.m │ │ │ │ ├── RACDynamicSequence.h │ │ │ │ ├── RACDynamicSequence.m │ │ │ │ ├── RACDynamicSignal.h │ │ │ │ ├── RACDynamicSignal.m │ │ │ │ ├── RACEagerSequence.h │ │ │ │ ├── RACEagerSequence.m │ │ │ │ ├── RACEmptySequence.h │ │ │ │ ├── RACEmptySequence.m │ │ │ │ ├── RACEmptySignal.h │ │ │ │ ├── RACEmptySignal.m │ │ │ │ ├── RACErrorSignal.h │ │ │ │ ├── RACErrorSignal.m │ │ │ │ ├── RACEvent.h │ │ │ │ ├── RACEvent.m │ │ │ │ ├── RACGroupedSignal.h │ │ │ │ ├── RACGroupedSignal.m │ │ │ │ ├── RACImmediateScheduler.h │ │ │ │ ├── RACImmediateScheduler.m │ │ │ │ ├── RACIndexSetSequence.h │ │ │ │ ├── RACIndexSetSequence.m │ │ │ │ ├── RACKVOChannel.h │ │ │ │ ├── RACKVOChannel.m │ │ │ │ ├── RACKVOProxy.h │ │ │ │ ├── RACKVOProxy.m │ │ │ │ ├── RACKVOTrampoline.h │ │ │ │ ├── RACKVOTrampoline.m │ │ │ │ ├── RACMulticastConnection+Private.h │ │ │ │ ├── RACMulticastConnection.h │ │ │ │ ├── RACMulticastConnection.m │ │ │ │ ├── RACObjCRuntime.h │ │ │ │ ├── RACObjCRuntime.m │ │ │ │ ├── RACPassthroughSubscriber.h │ │ │ │ ├── RACPassthroughSubscriber.m │ │ │ │ ├── RACQueueScheduler+Subclass.h │ │ │ │ ├── RACQueueScheduler.h │ │ │ │ ├── RACQueueScheduler.m │ │ │ │ ├── RACReplaySubject.h │ │ │ │ ├── RACReplaySubject.m │ │ │ │ ├── RACReturnSignal.h │ │ │ │ ├── RACReturnSignal.m │ │ │ │ ├── RACScheduler+Private.h │ │ │ │ ├── RACScheduler+Subclass.h │ │ │ │ ├── RACScheduler.h │ │ │ │ ├── RACScheduler.m │ │ │ │ ├── RACScopedDisposable.h │ │ │ │ ├── RACScopedDisposable.m │ │ │ │ ├── RACSequence.h │ │ │ │ ├── RACSequence.m │ │ │ │ ├── RACSerialDisposable.h │ │ │ │ ├── RACSerialDisposable.m │ │ │ │ ├── RACSignal+Operations.h │ │ │ │ ├── RACSignal+Operations.m │ │ │ │ ├── RACSignal.h │ │ │ │ ├── RACSignal.m │ │ │ │ ├── RACSignalProvider.d │ │ │ │ ├── RACSignalSequence.h │ │ │ │ ├── RACSignalSequence.m │ │ │ │ ├── RACStream+Private.h │ │ │ │ ├── RACStream.h │ │ │ │ ├── RACStream.m │ │ │ │ ├── RACStringSequence.h │ │ │ │ ├── RACStringSequence.m │ │ │ │ ├── RACSubject.h │ │ │ │ ├── RACSubject.m │ │ │ │ ├── RACSubscriber+Private.h │ │ │ │ ├── RACSubscriber.h │ │ │ │ ├── RACSubscriber.m │ │ │ │ ├── RACSubscriptingAssignmentTrampoline.h │ │ │ │ ├── RACSubscriptingAssignmentTrampoline.m │ │ │ │ ├── RACSubscriptionScheduler.h │ │ │ │ ├── RACSubscriptionScheduler.m │ │ │ │ ├── RACTargetQueueScheduler.h │ │ │ │ ├── RACTargetQueueScheduler.m │ │ │ │ ├── RACTestScheduler.h │ │ │ │ ├── RACTestScheduler.m │ │ │ │ ├── RACTuple.h │ │ │ │ ├── RACTuple.m │ │ │ │ ├── RACTupleSequence.h │ │ │ │ ├── RACTupleSequence.m │ │ │ │ ├── RACUnarySequence.h │ │ │ │ ├── RACUnarySequence.m │ │ │ │ ├── RACUnit.h │ │ │ │ ├── RACUnit.m │ │ │ │ ├── RACValueTransformer.h │ │ │ │ ├── RACValueTransformer.m │ │ │ │ ├── ReactiveCocoa.h │ │ │ │ ├── UIActionSheet+RACSignalSupport.h │ │ │ │ ├── UIActionSheet+RACSignalSupport.m │ │ │ │ ├── UIAlertView+RACSignalSupport.h │ │ │ │ ├── UIAlertView+RACSignalSupport.m │ │ │ │ ├── UIBarButtonItem+RACCommandSupport.h │ │ │ │ ├── UIBarButtonItem+RACCommandSupport.m │ │ │ │ ├── UIButton+RACCommandSupport.h │ │ │ │ ├── UIButton+RACCommandSupport.m │ │ │ │ ├── UICollectionReusableView+RACSignalSupport.h │ │ │ │ ├── UICollectionReusableView+RACSignalSupport.m │ │ │ │ ├── UIControl+RACSignalSupport.h │ │ │ │ ├── UIControl+RACSignalSupport.m │ │ │ │ ├── UIControl+RACSignalSupportPrivate.h │ │ │ │ ├── UIControl+RACSignalSupportPrivate.m │ │ │ │ ├── UIDatePicker+RACSignalSupport.h │ │ │ │ ├── UIDatePicker+RACSignalSupport.m │ │ │ │ ├── UIGestureRecognizer+RACSignalSupport.h │ │ │ │ ├── UIGestureRecognizer+RACSignalSupport.m │ │ │ │ ├── UIImagePickerController+RACSignalSupport.h │ │ │ │ ├── UIImagePickerController+RACSignalSupport.m │ │ │ │ ├── UIRefreshControl+RACCommandSupport.h │ │ │ │ ├── UIRefreshControl+RACCommandSupport.m │ │ │ │ ├── UISegmentedControl+RACSignalSupport.h │ │ │ │ ├── UISegmentedControl+RACSignalSupport.m │ │ │ │ ├── UISlider+RACSignalSupport.h │ │ │ │ ├── UISlider+RACSignalSupport.m │ │ │ │ ├── UIStepper+RACSignalSupport.h │ │ │ │ ├── UIStepper+RACSignalSupport.m │ │ │ │ ├── UISwitch+RACSignalSupport.h │ │ │ │ ├── UISwitch+RACSignalSupport.m │ │ │ │ ├── UITableViewCell+RACSignalSupport.h │ │ │ │ ├── UITableViewCell+RACSignalSupport.m │ │ │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.h │ │ │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.m │ │ │ │ ├── UITextField+RACSignalSupport.h │ │ │ │ ├── UITextField+RACSignalSupport.m │ │ │ │ ├── UITextView+RACSignalSupport.h │ │ │ │ ├── UITextView+RACSignalSupport.m │ │ │ │ └── extobjc │ │ │ │ ├── RACEXTKeyPathCoding.h │ │ │ │ ├── RACEXTRuntimeExtensions.h │ │ │ │ ├── RACEXTRuntimeExtensions.m │ │ │ │ ├── RACEXTScope.h │ │ │ │ └── RACmetamacros.h │ │ ├── Target Support Files │ │ │ ├── Pods-SMPOCChart-PNChart │ │ │ │ ├── Pods-SMPOCChart-PNChart-Private.xcconfig │ │ │ │ ├── Pods-SMPOCChart-PNChart-dummy.m │ │ │ │ ├── Pods-SMPOCChart-PNChart-prefix.pch │ │ │ │ └── Pods-SMPOCChart-PNChart.xcconfig │ │ │ ├── Pods-SMPOCChart-ReactiveCocoa │ │ │ │ ├── Pods-SMPOCChart-ReactiveCocoa-Private.xcconfig │ │ │ │ ├── Pods-SMPOCChart-ReactiveCocoa-dummy.m │ │ │ │ ├── Pods-SMPOCChart-ReactiveCocoa-prefix.pch │ │ │ │ └── Pods-SMPOCChart-ReactiveCocoa.xcconfig │ │ │ ├── Pods-SMPOCChart-UICountingLabel │ │ │ │ ├── Pods-SMPOCChart-UICountingLabel-Private.xcconfig │ │ │ │ ├── Pods-SMPOCChart-UICountingLabel-dummy.m │ │ │ │ ├── Pods-SMPOCChart-UICountingLabel-prefix.pch │ │ │ │ └── Pods-SMPOCChart-UICountingLabel.xcconfig │ │ │ ├── Pods-SMPOCChart │ │ │ │ ├── Pods-SMPOCChart-acknowledgements.markdown │ │ │ │ ├── Pods-SMPOCChart-acknowledgements.plist │ │ │ │ ├── Pods-SMPOCChart-dummy.m │ │ │ │ ├── Pods-SMPOCChart-environment.h │ │ │ │ ├── Pods-SMPOCChart-resources.sh │ │ │ │ ├── Pods-SMPOCChart.debug.xcconfig │ │ │ │ └── Pods-SMPOCChart.release.xcconfig │ │ │ ├── Pods-SMPOCChartTests-PNChart │ │ │ │ ├── Pods-SMPOCChartTests-PNChart-Private.xcconfig │ │ │ │ ├── Pods-SMPOCChartTests-PNChart-dummy.m │ │ │ │ ├── Pods-SMPOCChartTests-PNChart-prefix.pch │ │ │ │ └── Pods-SMPOCChartTests-PNChart.xcconfig │ │ │ ├── Pods-SMPOCChartTests-ReactiveCocoa │ │ │ │ ├── Pods-SMPOCChartTests-ReactiveCocoa-Private.xcconfig │ │ │ │ ├── Pods-SMPOCChartTests-ReactiveCocoa-dummy.m │ │ │ │ ├── Pods-SMPOCChartTests-ReactiveCocoa-prefix.pch │ │ │ │ └── Pods-SMPOCChartTests-ReactiveCocoa.xcconfig │ │ │ ├── Pods-SMPOCChartTests-UICountingLabel │ │ │ │ ├── Pods-SMPOCChartTests-UICountingLabel-Private.xcconfig │ │ │ │ ├── Pods-SMPOCChartTests-UICountingLabel-dummy.m │ │ │ │ ├── Pods-SMPOCChartTests-UICountingLabel-prefix.pch │ │ │ │ └── Pods-SMPOCChartTests-UICountingLabel.xcconfig │ │ │ └── Pods-SMPOCChartTests │ │ │ │ ├── Pods-SMPOCChartTests-acknowledgements.markdown │ │ │ │ ├── Pods-SMPOCChartTests-acknowledgements.plist │ │ │ │ ├── Pods-SMPOCChartTests-dummy.m │ │ │ │ ├── Pods-SMPOCChartTests-environment.h │ │ │ │ ├── Pods-SMPOCChartTests-resources.sh │ │ │ │ ├── Pods-SMPOCChartTests.debug.xcconfig │ │ │ │ └── Pods-SMPOCChartTests.release.xcconfig │ │ └── UICountingLabel │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── UICountingLabel.h │ │ │ └── UICountingLabel.m │ ├── SMPOCChart-Bridging-Header.h │ ├── SMPOCChart.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── SMPOCChart.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── SMPOCChart.xccheckout │ ├── SMPOCChart │ │ ├── AppDelegate.swift │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── RAC.swift │ │ ├── RACObserve.swift │ │ ├── RACSignal+Extensions.swift │ │ ├── SMBluetoothSimulator.swift │ │ ├── SwiftyJSON.h │ │ ├── SwiftyJSON.swift │ │ └── ViewController.swift │ └── SMPOCChartTests │ │ ├── Info.plist │ │ └── SMPOCChartTests.swift └── sensmove │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ ├── AMSlideMenu │ │ ├── AMSlideMenu │ │ │ ├── AMSlideMenuContentSegue.h │ │ │ ├── AMSlideMenuContentSegue.m │ │ │ ├── AMSlideMenuLeftMenuSegue.h │ │ │ ├── AMSlideMenuLeftMenuSegue.m │ │ │ ├── AMSlideMenuLeftTableViewController.h │ │ │ ├── AMSlideMenuLeftTableViewController.m │ │ │ ├── AMSlideMenuMainViewController.h │ │ │ ├── AMSlideMenuMainViewController.m │ │ │ ├── AMSlideMenuProtocols.h │ │ │ ├── AMSlideMenuRightMenuSegue.h │ │ │ ├── AMSlideMenuRightMenuSegue.m │ │ │ ├── AMSlideMenuRightTableViewController.h │ │ │ ├── AMSlideMenuRightTableViewController.m │ │ │ ├── UIViewController+AMSlideMenu.h │ │ │ └── UIViewController+AMSlideMenu.m │ │ ├── LICENSE │ │ └── README.md │ ├── CryptoSwift │ │ ├── CryptoSwift │ │ │ ├── AES.swift │ │ │ ├── ArrayExtension.swift │ │ │ ├── Authenticator.swift │ │ │ ├── BitExtension.swift │ │ │ ├── CRC.swift │ │ │ ├── ChaCha20.swift │ │ │ ├── Cipher.swift │ │ │ ├── CipherBlockMode.swift │ │ │ ├── Generics.swift │ │ │ ├── HMAC.swift │ │ │ ├── Hash.swift │ │ │ ├── HashBase.swift │ │ │ ├── IntExtension.swift │ │ │ ├── IntegerConvertible.swift │ │ │ ├── MD5.swift │ │ │ ├── NSDataExtension.swift │ │ │ ├── Operators.swift │ │ │ ├── PKCS5.swift │ │ │ ├── PKCS7.swift │ │ │ ├── Padding.swift │ │ │ ├── Poly1305.swift │ │ │ ├── SHA1.swift │ │ │ ├── SHA2.swift │ │ │ ├── StringExtension.swift │ │ │ ├── UInt16Extension.swift │ │ │ ├── UInt32Extension.swift │ │ │ ├── UInt64Extension.swift │ │ │ ├── UInt8Extension.swift │ │ │ └── Utils.swift │ │ ├── LICENSE │ │ └── README.md │ ├── Headers │ │ ├── Private │ │ │ ├── AMSlideMenu │ │ │ │ ├── AMSlideMenuContentSegue.h │ │ │ │ ├── AMSlideMenuLeftMenuSegue.h │ │ │ │ ├── AMSlideMenuLeftTableViewController.h │ │ │ │ ├── AMSlideMenuMainViewController.h │ │ │ │ ├── AMSlideMenuProtocols.h │ │ │ │ ├── AMSlideMenuRightMenuSegue.h │ │ │ │ ├── AMSlideMenuRightTableViewController.h │ │ │ │ └── UIViewController+AMSlideMenu.h │ │ │ ├── PNChart │ │ │ │ ├── PNBar.h │ │ │ │ ├── PNBarChart.h │ │ │ │ ├── PNChart.h │ │ │ │ ├── PNChartDelegate.h │ │ │ │ ├── PNChartLabel.h │ │ │ │ ├── PNCircleChart.h │ │ │ │ ├── PNColor.h │ │ │ │ ├── PNGenericChart.h │ │ │ │ ├── PNLineChart.h │ │ │ │ ├── PNLineChartData.h │ │ │ │ ├── PNLineChartDataItem.h │ │ │ │ ├── PNPieChart.h │ │ │ │ ├── PNPieChartDataItem.h │ │ │ │ ├── PNScatterChart.h │ │ │ │ ├── PNScatterChartData.h │ │ │ │ └── PNScatterChartDataItem.h │ │ │ ├── ReactiveCocoa │ │ │ │ ├── MKAnnotationView+RACSignalSupport.h │ │ │ │ ├── NSArray+RACSequenceAdditions.h │ │ │ │ ├── NSData+RACSupport.h │ │ │ │ ├── NSDictionary+RACSequenceAdditions.h │ │ │ │ ├── NSEnumerator+RACSequenceAdditions.h │ │ │ │ ├── NSFileHandle+RACSupport.h │ │ │ │ ├── NSIndexSet+RACSequenceAdditions.h │ │ │ │ ├── NSInvocation+RACTypeParsing.h │ │ │ │ ├── NSNotificationCenter+RACSupport.h │ │ │ │ ├── NSObject+RACDeallocating.h │ │ │ │ ├── NSObject+RACDescription.h │ │ │ │ ├── NSObject+RACKVOWrapper.h │ │ │ │ ├── NSObject+RACLifting.h │ │ │ │ ├── NSObject+RACPropertySubscribing.h │ │ │ │ ├── NSObject+RACSelectorSignal.h │ │ │ │ ├── NSOrderedSet+RACSequenceAdditions.h │ │ │ │ ├── NSSet+RACSequenceAdditions.h │ │ │ │ ├── NSString+RACKeyPathUtilities.h │ │ │ │ ├── NSString+RACSequenceAdditions.h │ │ │ │ ├── NSString+RACSupport.h │ │ │ │ ├── NSURLConnection+RACSupport.h │ │ │ │ ├── NSUserDefaults+RACSupport.h │ │ │ │ ├── RACArraySequence.h │ │ │ │ ├── RACBehaviorSubject.h │ │ │ │ ├── RACBlockTrampoline.h │ │ │ │ ├── RACChannel.h │ │ │ │ ├── RACCommand.h │ │ │ │ ├── RACCompoundDisposable.h │ │ │ │ ├── RACDelegateProxy.h │ │ │ │ ├── RACDisposable.h │ │ │ │ ├── RACDynamicSequence.h │ │ │ │ ├── RACDynamicSignal.h │ │ │ │ ├── RACEXTKeyPathCoding.h │ │ │ │ ├── RACEXTRuntimeExtensions.h │ │ │ │ ├── RACEXTScope.h │ │ │ │ ├── RACEagerSequence.h │ │ │ │ ├── RACEmptySequence.h │ │ │ │ ├── RACEmptySignal.h │ │ │ │ ├── RACErrorSignal.h │ │ │ │ ├── RACEvent.h │ │ │ │ ├── RACGroupedSignal.h │ │ │ │ ├── RACImmediateScheduler.h │ │ │ │ ├── RACIndexSetSequence.h │ │ │ │ ├── RACKVOChannel.h │ │ │ │ ├── RACKVOProxy.h │ │ │ │ ├── RACKVOTrampoline.h │ │ │ │ ├── RACMulticastConnection+Private.h │ │ │ │ ├── RACMulticastConnection.h │ │ │ │ ├── RACObjCRuntime.h │ │ │ │ ├── RACPassthroughSubscriber.h │ │ │ │ ├── RACQueueScheduler+Subclass.h │ │ │ │ ├── RACQueueScheduler.h │ │ │ │ ├── RACReplaySubject.h │ │ │ │ ├── RACReturnSignal.h │ │ │ │ ├── RACScheduler+Private.h │ │ │ │ ├── RACScheduler+Subclass.h │ │ │ │ ├── RACScheduler.h │ │ │ │ ├── RACScopedDisposable.h │ │ │ │ ├── RACSequence.h │ │ │ │ ├── RACSerialDisposable.h │ │ │ │ ├── RACSignal+Operations.h │ │ │ │ ├── RACSignal.h │ │ │ │ ├── RACSignalSequence.h │ │ │ │ ├── RACStream+Private.h │ │ │ │ ├── RACStream.h │ │ │ │ ├── RACStringSequence.h │ │ │ │ ├── RACSubject.h │ │ │ │ ├── RACSubscriber+Private.h │ │ │ │ ├── RACSubscriber.h │ │ │ │ ├── RACSubscriptingAssignmentTrampoline.h │ │ │ │ ├── RACSubscriptionScheduler.h │ │ │ │ ├── RACTargetQueueScheduler.h │ │ │ │ ├── RACTestScheduler.h │ │ │ │ ├── RACTuple.h │ │ │ │ ├── RACTupleSequence.h │ │ │ │ ├── RACUnarySequence.h │ │ │ │ ├── RACUnit.h │ │ │ │ ├── RACValueTransformer.h │ │ │ │ ├── RACmetamacros.h │ │ │ │ ├── ReactiveCocoa.h │ │ │ │ ├── UIActionSheet+RACSignalSupport.h │ │ │ │ ├── UIAlertView+RACSignalSupport.h │ │ │ │ ├── UIBarButtonItem+RACCommandSupport.h │ │ │ │ ├── UIButton+RACCommandSupport.h │ │ │ │ ├── UICollectionReusableView+RACSignalSupport.h │ │ │ │ ├── UIControl+RACSignalSupport.h │ │ │ │ ├── UIControl+RACSignalSupportPrivate.h │ │ │ │ ├── UIDatePicker+RACSignalSupport.h │ │ │ │ ├── UIGestureRecognizer+RACSignalSupport.h │ │ │ │ ├── UIImagePickerController+RACSignalSupport.h │ │ │ │ ├── UIRefreshControl+RACCommandSupport.h │ │ │ │ ├── UISegmentedControl+RACSignalSupport.h │ │ │ │ ├── UISlider+RACSignalSupport.h │ │ │ │ ├── UIStepper+RACSignalSupport.h │ │ │ │ ├── UISwitch+RACSignalSupport.h │ │ │ │ ├── UITableViewCell+RACSignalSupport.h │ │ │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.h │ │ │ │ ├── UITextField+RACSignalSupport.h │ │ │ │ └── UITextView+RACSignalSupport.h │ │ │ └── UICountingLabel │ │ │ │ └── UICountingLabel.h │ │ └── Public │ │ │ ├── AMSlideMenu │ │ │ ├── AMSlideMenuContentSegue.h │ │ │ ├── AMSlideMenuLeftMenuSegue.h │ │ │ ├── AMSlideMenuLeftTableViewController.h │ │ │ ├── AMSlideMenuMainViewController.h │ │ │ ├── AMSlideMenuProtocols.h │ │ │ ├── AMSlideMenuRightMenuSegue.h │ │ │ ├── AMSlideMenuRightTableViewController.h │ │ │ └── UIViewController+AMSlideMenu.h │ │ │ ├── PNChart │ │ │ ├── PNBar.h │ │ │ ├── PNBarChart.h │ │ │ ├── PNChart.h │ │ │ ├── PNChartDelegate.h │ │ │ ├── PNChartLabel.h │ │ │ ├── PNCircleChart.h │ │ │ ├── PNColor.h │ │ │ ├── PNGenericChart.h │ │ │ ├── PNLineChart.h │ │ │ ├── PNLineChartData.h │ │ │ ├── PNLineChartDataItem.h │ │ │ ├── PNPieChart.h │ │ │ ├── PNPieChartDataItem.h │ │ │ ├── PNScatterChart.h │ │ │ ├── PNScatterChartData.h │ │ │ └── PNScatterChartDataItem.h │ │ │ ├── ReactiveCocoa │ │ │ ├── MKAnnotationView+RACSignalSupport.h │ │ │ ├── NSArray+RACSequenceAdditions.h │ │ │ ├── NSData+RACSupport.h │ │ │ ├── NSDictionary+RACSequenceAdditions.h │ │ │ ├── NSEnumerator+RACSequenceAdditions.h │ │ │ ├── NSFileHandle+RACSupport.h │ │ │ ├── NSIndexSet+RACSequenceAdditions.h │ │ │ ├── NSInvocation+RACTypeParsing.h │ │ │ ├── NSNotificationCenter+RACSupport.h │ │ │ ├── NSObject+RACDeallocating.h │ │ │ ├── NSObject+RACDescription.h │ │ │ ├── NSObject+RACKVOWrapper.h │ │ │ ├── NSObject+RACLifting.h │ │ │ ├── NSObject+RACPropertySubscribing.h │ │ │ ├── NSObject+RACSelectorSignal.h │ │ │ ├── NSOrderedSet+RACSequenceAdditions.h │ │ │ ├── NSSet+RACSequenceAdditions.h │ │ │ ├── NSString+RACKeyPathUtilities.h │ │ │ ├── NSString+RACSequenceAdditions.h │ │ │ ├── NSString+RACSupport.h │ │ │ ├── NSURLConnection+RACSupport.h │ │ │ ├── NSUserDefaults+RACSupport.h │ │ │ ├── RACArraySequence.h │ │ │ ├── RACBehaviorSubject.h │ │ │ ├── RACBlockTrampoline.h │ │ │ ├── RACChannel.h │ │ │ ├── RACCommand.h │ │ │ ├── RACCompoundDisposable.h │ │ │ ├── RACDelegateProxy.h │ │ │ ├── RACDisposable.h │ │ │ ├── RACDynamicSequence.h │ │ │ ├── RACDynamicSignal.h │ │ │ ├── RACEXTKeyPathCoding.h │ │ │ ├── RACEXTRuntimeExtensions.h │ │ │ ├── RACEXTScope.h │ │ │ ├── RACEagerSequence.h │ │ │ ├── RACEmptySequence.h │ │ │ ├── RACEmptySignal.h │ │ │ ├── RACErrorSignal.h │ │ │ ├── RACEvent.h │ │ │ ├── RACGroupedSignal.h │ │ │ ├── RACImmediateScheduler.h │ │ │ ├── RACIndexSetSequence.h │ │ │ ├── RACKVOChannel.h │ │ │ ├── RACKVOProxy.h │ │ │ ├── RACKVOTrampoline.h │ │ │ ├── RACMulticastConnection.h │ │ │ ├── RACObjCRuntime.h │ │ │ ├── RACPassthroughSubscriber.h │ │ │ ├── RACQueueScheduler+Subclass.h │ │ │ ├── RACQueueScheduler.h │ │ │ ├── RACReplaySubject.h │ │ │ ├── RACReturnSignal.h │ │ │ ├── RACScheduler+Subclass.h │ │ │ ├── RACScheduler.h │ │ │ ├── RACScopedDisposable.h │ │ │ ├── RACSequence.h │ │ │ ├── RACSerialDisposable.h │ │ │ ├── RACSignal+Operations.h │ │ │ ├── RACSignal.h │ │ │ ├── RACSignalSequence.h │ │ │ ├── RACStream.h │ │ │ ├── RACStringSequence.h │ │ │ ├── RACSubject.h │ │ │ ├── RACSubscriber.h │ │ │ ├── RACSubscriptingAssignmentTrampoline.h │ │ │ ├── RACSubscriptionScheduler.h │ │ │ ├── RACTargetQueueScheduler.h │ │ │ ├── RACTestScheduler.h │ │ │ ├── RACTuple.h │ │ │ ├── RACTupleSequence.h │ │ │ ├── RACUnarySequence.h │ │ │ ├── RACUnit.h │ │ │ ├── RACValueTransformer.h │ │ │ ├── RACmetamacros.h │ │ │ ├── ReactiveCocoa.h │ │ │ ├── UIActionSheet+RACSignalSupport.h │ │ │ ├── UIAlertView+RACSignalSupport.h │ │ │ ├── UIBarButtonItem+RACCommandSupport.h │ │ │ ├── UIButton+RACCommandSupport.h │ │ │ ├── UICollectionReusableView+RACSignalSupport.h │ │ │ ├── UIControl+RACSignalSupport.h │ │ │ ├── UIControl+RACSignalSupportPrivate.h │ │ │ ├── UIDatePicker+RACSignalSupport.h │ │ │ ├── UIGestureRecognizer+RACSignalSupport.h │ │ │ ├── UIImagePickerController+RACSignalSupport.h │ │ │ ├── UIRefreshControl+RACCommandSupport.h │ │ │ ├── UISegmentedControl+RACSignalSupport.h │ │ │ ├── UISlider+RACSignalSupport.h │ │ │ ├── UIStepper+RACSignalSupport.h │ │ │ ├── UISwitch+RACSignalSupport.h │ │ │ ├── UITableViewCell+RACSignalSupport.h │ │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.h │ │ │ ├── UITextField+RACSignalSupport.h │ │ │ └── UITextView+RACSignalSupport.h │ │ │ └── UICountingLabel │ │ │ └── UICountingLabel.h │ ├── Manifest.lock │ ├── PNChart │ │ ├── LICENSE │ │ ├── PNChart │ │ │ ├── PNBar.h │ │ │ ├── PNBar.m │ │ │ ├── PNBarChart.h │ │ │ ├── PNBarChart.m │ │ │ ├── PNChart.h │ │ │ ├── PNChartDelegate.h │ │ │ ├── PNChartLabel.h │ │ │ ├── PNChartLabel.m │ │ │ ├── PNCircleChart.h │ │ │ ├── PNCircleChart.m │ │ │ ├── PNColor.h │ │ │ ├── PNColor.m │ │ │ ├── PNGenericChart.h │ │ │ ├── PNGenericChart.m │ │ │ ├── PNLineChart.h │ │ │ ├── PNLineChart.m │ │ │ ├── PNLineChartData.h │ │ │ ├── PNLineChartData.m │ │ │ ├── PNLineChartDataItem.h │ │ │ ├── PNLineChartDataItem.m │ │ │ ├── PNPieChart.h │ │ │ ├── PNPieChart.m │ │ │ ├── PNPieChartDataItem.h │ │ │ ├── PNPieChartDataItem.m │ │ │ ├── PNScatterChart.h │ │ │ ├── PNScatterChart.m │ │ │ ├── PNScatterChartData.h │ │ │ ├── PNScatterChartData.m │ │ │ ├── PNScatterChartDataItem.h │ │ │ └── PNScatterChartDataItem.m │ │ └── README.md │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ ├── ReactiveCocoa │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── ReactiveCocoa │ │ │ ├── MKAnnotationView+RACSignalSupport.h │ │ │ ├── MKAnnotationView+RACSignalSupport.m │ │ │ ├── NSArray+RACSequenceAdditions.h │ │ │ ├── NSArray+RACSequenceAdditions.m │ │ │ ├── NSData+RACSupport.h │ │ │ ├── NSData+RACSupport.m │ │ │ ├── NSDictionary+RACSequenceAdditions.h │ │ │ ├── NSDictionary+RACSequenceAdditions.m │ │ │ ├── NSEnumerator+RACSequenceAdditions.h │ │ │ ├── NSEnumerator+RACSequenceAdditions.m │ │ │ ├── NSFileHandle+RACSupport.h │ │ │ ├── NSFileHandle+RACSupport.m │ │ │ ├── NSIndexSet+RACSequenceAdditions.h │ │ │ ├── NSIndexSet+RACSequenceAdditions.m │ │ │ ├── NSInvocation+RACTypeParsing.h │ │ │ ├── NSInvocation+RACTypeParsing.m │ │ │ ├── NSNotificationCenter+RACSupport.h │ │ │ ├── NSNotificationCenter+RACSupport.m │ │ │ ├── NSObject+RACDeallocating.h │ │ │ ├── NSObject+RACDeallocating.m │ │ │ ├── NSObject+RACDescription.h │ │ │ ├── NSObject+RACDescription.m │ │ │ ├── NSObject+RACKVOWrapper.h │ │ │ ├── NSObject+RACKVOWrapper.m │ │ │ ├── NSObject+RACLifting.h │ │ │ ├── NSObject+RACLifting.m │ │ │ ├── NSObject+RACPropertySubscribing.h │ │ │ ├── NSObject+RACPropertySubscribing.m │ │ │ ├── NSObject+RACSelectorSignal.h │ │ │ ├── NSObject+RACSelectorSignal.m │ │ │ ├── NSOrderedSet+RACSequenceAdditions.h │ │ │ ├── NSOrderedSet+RACSequenceAdditions.m │ │ │ ├── NSSet+RACSequenceAdditions.h │ │ │ ├── NSSet+RACSequenceAdditions.m │ │ │ ├── NSString+RACKeyPathUtilities.h │ │ │ ├── NSString+RACKeyPathUtilities.m │ │ │ ├── NSString+RACSequenceAdditions.h │ │ │ ├── NSString+RACSequenceAdditions.m │ │ │ ├── NSString+RACSupport.h │ │ │ ├── NSString+RACSupport.m │ │ │ ├── NSURLConnection+RACSupport.h │ │ │ ├── NSURLConnection+RACSupport.m │ │ │ ├── NSUserDefaults+RACSupport.h │ │ │ ├── NSUserDefaults+RACSupport.m │ │ │ ├── RACArraySequence.h │ │ │ ├── RACArraySequence.m │ │ │ ├── RACBehaviorSubject.h │ │ │ ├── RACBehaviorSubject.m │ │ │ ├── RACBlockTrampoline.h │ │ │ ├── RACBlockTrampoline.m │ │ │ ├── RACChannel.h │ │ │ ├── RACChannel.m │ │ │ ├── RACCommand.h │ │ │ ├── RACCommand.m │ │ │ ├── RACCompoundDisposable.h │ │ │ ├── RACCompoundDisposable.m │ │ │ ├── RACCompoundDisposableProvider.d │ │ │ ├── RACDelegateProxy.h │ │ │ ├── RACDelegateProxy.m │ │ │ ├── RACDisposable.h │ │ │ ├── RACDisposable.m │ │ │ ├── RACDynamicSequence.h │ │ │ ├── RACDynamicSequence.m │ │ │ ├── RACDynamicSignal.h │ │ │ ├── RACDynamicSignal.m │ │ │ ├── RACEagerSequence.h │ │ │ ├── RACEagerSequence.m │ │ │ ├── RACEmptySequence.h │ │ │ ├── RACEmptySequence.m │ │ │ ├── RACEmptySignal.h │ │ │ ├── RACEmptySignal.m │ │ │ ├── RACErrorSignal.h │ │ │ ├── RACErrorSignal.m │ │ │ ├── RACEvent.h │ │ │ ├── RACEvent.m │ │ │ ├── RACGroupedSignal.h │ │ │ ├── RACGroupedSignal.m │ │ │ ├── RACImmediateScheduler.h │ │ │ ├── RACImmediateScheduler.m │ │ │ ├── RACIndexSetSequence.h │ │ │ ├── RACIndexSetSequence.m │ │ │ ├── RACKVOChannel.h │ │ │ ├── RACKVOChannel.m │ │ │ ├── RACKVOProxy.h │ │ │ ├── RACKVOProxy.m │ │ │ ├── RACKVOTrampoline.h │ │ │ ├── RACKVOTrampoline.m │ │ │ ├── RACMulticastConnection+Private.h │ │ │ ├── RACMulticastConnection.h │ │ │ ├── RACMulticastConnection.m │ │ │ ├── RACObjCRuntime.h │ │ │ ├── RACObjCRuntime.m │ │ │ ├── RACPassthroughSubscriber.h │ │ │ ├── RACPassthroughSubscriber.m │ │ │ ├── RACQueueScheduler+Subclass.h │ │ │ ├── RACQueueScheduler.h │ │ │ ├── RACQueueScheduler.m │ │ │ ├── RACReplaySubject.h │ │ │ ├── RACReplaySubject.m │ │ │ ├── RACReturnSignal.h │ │ │ ├── RACReturnSignal.m │ │ │ ├── RACScheduler+Private.h │ │ │ ├── RACScheduler+Subclass.h │ │ │ ├── RACScheduler.h │ │ │ ├── RACScheduler.m │ │ │ ├── RACScopedDisposable.h │ │ │ ├── RACScopedDisposable.m │ │ │ ├── RACSequence.h │ │ │ ├── RACSequence.m │ │ │ ├── RACSerialDisposable.h │ │ │ ├── RACSerialDisposable.m │ │ │ ├── RACSignal+Operations.h │ │ │ ├── RACSignal+Operations.m │ │ │ ├── RACSignal.h │ │ │ ├── RACSignal.m │ │ │ ├── RACSignalProvider.d │ │ │ ├── RACSignalSequence.h │ │ │ ├── RACSignalSequence.m │ │ │ ├── RACStream+Private.h │ │ │ ├── RACStream.h │ │ │ ├── RACStream.m │ │ │ ├── RACStringSequence.h │ │ │ ├── RACStringSequence.m │ │ │ ├── RACSubject.h │ │ │ ├── RACSubject.m │ │ │ ├── RACSubscriber+Private.h │ │ │ ├── RACSubscriber.h │ │ │ ├── RACSubscriber.m │ │ │ ├── RACSubscriptingAssignmentTrampoline.h │ │ │ ├── RACSubscriptingAssignmentTrampoline.m │ │ │ ├── RACSubscriptionScheduler.h │ │ │ ├── RACSubscriptionScheduler.m │ │ │ ├── RACTargetQueueScheduler.h │ │ │ ├── RACTargetQueueScheduler.m │ │ │ ├── RACTestScheduler.h │ │ │ ├── RACTestScheduler.m │ │ │ ├── RACTuple.h │ │ │ ├── RACTuple.m │ │ │ ├── RACTupleSequence.h │ │ │ ├── RACTupleSequence.m │ │ │ ├── RACUnarySequence.h │ │ │ ├── RACUnarySequence.m │ │ │ ├── RACUnit.h │ │ │ ├── RACUnit.m │ │ │ ├── RACValueTransformer.h │ │ │ ├── RACValueTransformer.m │ │ │ ├── ReactiveCocoa.h │ │ │ ├── UIActionSheet+RACSignalSupport.h │ │ │ ├── UIActionSheet+RACSignalSupport.m │ │ │ ├── UIAlertView+RACSignalSupport.h │ │ │ ├── UIAlertView+RACSignalSupport.m │ │ │ ├── UIBarButtonItem+RACCommandSupport.h │ │ │ ├── UIBarButtonItem+RACCommandSupport.m │ │ │ ├── UIButton+RACCommandSupport.h │ │ │ ├── UIButton+RACCommandSupport.m │ │ │ ├── UICollectionReusableView+RACSignalSupport.h │ │ │ ├── UICollectionReusableView+RACSignalSupport.m │ │ │ ├── UIControl+RACSignalSupport.h │ │ │ ├── UIControl+RACSignalSupport.m │ │ │ ├── UIControl+RACSignalSupportPrivate.h │ │ │ ├── UIControl+RACSignalSupportPrivate.m │ │ │ ├── UIDatePicker+RACSignalSupport.h │ │ │ ├── UIDatePicker+RACSignalSupport.m │ │ │ ├── UIGestureRecognizer+RACSignalSupport.h │ │ │ ├── UIGestureRecognizer+RACSignalSupport.m │ │ │ ├── UIImagePickerController+RACSignalSupport.h │ │ │ ├── UIImagePickerController+RACSignalSupport.m │ │ │ ├── UIRefreshControl+RACCommandSupport.h │ │ │ ├── UIRefreshControl+RACCommandSupport.m │ │ │ ├── UISegmentedControl+RACSignalSupport.h │ │ │ ├── UISegmentedControl+RACSignalSupport.m │ │ │ ├── UISlider+RACSignalSupport.h │ │ │ ├── UISlider+RACSignalSupport.m │ │ │ ├── UIStepper+RACSignalSupport.h │ │ │ ├── UIStepper+RACSignalSupport.m │ │ │ ├── UISwitch+RACSignalSupport.h │ │ │ ├── UISwitch+RACSignalSupport.m │ │ │ ├── UITableViewCell+RACSignalSupport.h │ │ │ ├── UITableViewCell+RACSignalSupport.m │ │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.h │ │ │ ├── UITableViewHeaderFooterView+RACSignalSupport.m │ │ │ ├── UITextField+RACSignalSupport.h │ │ │ ├── UITextField+RACSignalSupport.m │ │ │ ├── UITextView+RACSignalSupport.h │ │ │ ├── UITextView+RACSignalSupport.m │ │ │ └── extobjc │ │ │ ├── RACEXTKeyPathCoding.h │ │ │ ├── RACEXTRuntimeExtensions.h │ │ │ ├── RACEXTRuntimeExtensions.m │ │ │ ├── RACEXTScope.h │ │ │ └── RACmetamacros.h │ ├── Target Support Files │ │ ├── AMSlideMenu │ │ │ ├── AMSlideMenu-Private.xcconfig │ │ │ ├── AMSlideMenu-dummy.m │ │ │ ├── AMSlideMenu-prefix.pch │ │ │ └── AMSlideMenu.xcconfig │ │ ├── PNChart │ │ │ ├── PNChart-Private.xcconfig │ │ │ ├── PNChart-dummy.m │ │ │ ├── PNChart-prefix.pch │ │ │ └── PNChart.xcconfig │ │ ├── Pods-sensmove │ │ │ ├── Pods-sensmove-acknowledgements.markdown │ │ │ ├── Pods-sensmove-acknowledgements.plist │ │ │ ├── Pods-sensmove-dummy.m │ │ │ ├── Pods-sensmove-resources.sh │ │ │ ├── Pods-sensmove.debug.xcconfig │ │ │ └── Pods-sensmove.release.xcconfig │ │ ├── Pods-sensmoveTests │ │ │ ├── Pods-sensmoveTests-acknowledgements.markdown │ │ │ ├── Pods-sensmoveTests-acknowledgements.plist │ │ │ ├── Pods-sensmoveTests-dummy.m │ │ │ ├── Pods-sensmoveTests-resources.sh │ │ │ ├── Pods-sensmoveTests.debug.xcconfig │ │ │ └── Pods-sensmoveTests.release.xcconfig │ │ ├── ReactiveCocoa │ │ │ ├── ReactiveCocoa-Private.xcconfig │ │ │ ├── ReactiveCocoa-dummy.m │ │ │ ├── ReactiveCocoa-prefix.pch │ │ │ └── ReactiveCocoa.xcconfig │ │ └── UICountingLabel │ │ │ ├── UICountingLabel-Private.xcconfig │ │ │ ├── UICountingLabel-dummy.m │ │ │ ├── UICountingLabel-prefix.pch │ │ │ └── UICountingLabel.xcconfig │ └── UICountingLabel │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UICountingLabel.h │ │ └── UICountingLabel.m │ ├── build │ ├── libPods-sensmove-AMSlideMenu.a │ ├── libPods-sensmove-ReactiveCocoa.a │ ├── libPods-sensmove.a │ ├── libPods-sensmoveTests-AMSlideMenu.a │ └── libPods-sensmoveTests.a │ ├── sensmove.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── sensmove.xccheckout │ ├── sensmove.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── sensmove.xccheckout │ ├── sensmove │ ├── AppDelegate.swift │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 120x120-1.png │ │ │ ├── 120x120.png │ │ │ ├── 180x180.png │ │ │ ├── 58x58.png │ │ │ ├── 80x80.png │ │ │ ├── 87x87.png │ │ │ └── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x-1.png │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667h@2x.png │ │ │ ├── Default-Portrait-736h@3x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x-1.png │ │ │ └── Default@2x.png │ │ ├── home.imageset │ │ │ ├── Contents.json │ │ │ └── home.png │ │ ├── logo_without_strap.imageset │ │ │ ├── Contents.json │ │ │ └── logo_without_strap.png │ │ ├── patsy.imageset │ │ │ ├── Contents.json │ │ │ └── patsy.jpg │ │ ├── profile.imageset │ │ │ ├── Contents.json │ │ │ └── profile.png │ │ ├── sensmove.imageset │ │ │ ├── Contents.json │ │ │ └── sensmove.jpg │ │ └── sessions.imageset │ │ │ ├── Contents.json │ │ │ └── sessions.png │ ├── Info.plist │ ├── LFTPulseAnimation.swift │ ├── RAC.swift │ ├── RACObserve.swift │ ├── RACSignal+Extensions.swift │ ├── SMAccelerometer.swift │ ├── SMBLEDiscovery.swift │ ├── SMBLEService.swift │ ├── SMBluetoothDatasBuffer.swift │ ├── SMBluetoothSimulator.swift │ ├── SMChronometer.swift │ ├── SMColor.swift │ ├── SMConnexionNotification.swift │ ├── SMConstants.swift │ ├── SMData.json │ ├── SMData.swift │ ├── SMDataExtensions.swift │ ├── SMDataProcessing.swift │ ├── SMForce.swift │ ├── SMGradient.swift │ ├── SMHomeController.swift │ ├── SMLeftMenuVC.h │ ├── SMLeftMenuVC.m │ ├── SMLiveForcesTrack.swift │ ├── SMLoginController.swift │ ├── SMPresentationController.swift │ ├── SMPulse.swift │ ├── SMResultController.swift │ ├── SMSensor.swift │ ├── SMSensorsVectors.json │ ├── SMSession.swift │ ├── SMSessionController.swift │ ├── SMSessionViewCell.swift │ ├── SMSideMenuController.h │ ├── SMSideMenuController.m │ ├── SMSole.swift │ ├── SMTrackController.swift │ ├── SMTrackSessionService.swift │ ├── SMUser.swift │ ├── SMUserController.swift │ ├── SMUserService.swift │ ├── SwiftyJSON.h │ ├── SwiftyJSON.swift │ ├── TPKeyboardAvoidingScrollView.h │ ├── TPKeyboardAvoidingScrollView.m │ ├── UIScrollView+TPKeyboardAvoidingAdditions.h │ ├── UIScrollView+TPKeyboardAvoidingAdditions.m │ ├── menu.png │ ├── menu@2x.png │ ├── sensmove-Bridging-Header.h │ ├── sensmove.xcdatamodeld │ │ ├── .xccurrentversion │ │ └── sensmove.xcdatamodel │ │ │ └── contents │ ├── simpleMenuButton.png │ └── simpleMenuButton@2x.png │ └── sensmoveTests │ ├── Info.plist │ ├── Roboto-Light.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-Regular.ttf │ ├── SMSessionTest.swift │ ├── SMUserTest.swift │ ├── sensmoveTests.swift │ └── varela round.otf └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | **/*.DS_Store 2 | arduino/sensmove/sensmove/Builds 3 | xcuserdata 4 | -------------------------------------------------------------------------------- /design/3d_model/left_insole_004_flat.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/3d_model/left_insole_004_flat.stl -------------------------------------------------------------------------------- /design/3d_model/right_insole_004_flat.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/3d_model/right_insole_004_flat.stl -------------------------------------------------------------------------------- /design/53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/53.jpg -------------------------------------------------------------------------------- /design/app_exports/credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/app_exports/credentials.png -------------------------------------------------------------------------------- /design/app_exports/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/app_exports/home.png -------------------------------------------------------------------------------- /design/app_exports/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/app_exports/menu.png -------------------------------------------------------------------------------- /design/app_exports/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/app_exports/profile.png -------------------------------------------------------------------------------- /design/app_exports/result-balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/app_exports/result-balance.png -------------------------------------------------------------------------------- /design/app_exports/result-forces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/app_exports/result-forces.png -------------------------------------------------------------------------------- /design/app_exports/result-resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/app_exports/result-resume.png -------------------------------------------------------------------------------- /design/app_exports/session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/app_exports/session.png -------------------------------------------------------------------------------- /design/app_exports/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/app_exports/teaser.png -------------------------------------------------------------------------------- /design/app_exports/track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/app_exports/track.png -------------------------------------------------------------------------------- /design/app_icon/120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/app_icon/120x120.png -------------------------------------------------------------------------------- /design/app_icon/180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/app_icon/180x180.png -------------------------------------------------------------------------------- /design/app_icon/58x58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/app_icon/58x58.png -------------------------------------------------------------------------------- /design/app_icon/80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/app_icon/80x80.png -------------------------------------------------------------------------------- /design/app_icon/87x87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/app_icon/87x87.png -------------------------------------------------------------------------------- /design/app_icon/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/app_icon/app-icon.png -------------------------------------------------------------------------------- /design/app_icon/app-icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/app_icon/app-icon.psd -------------------------------------------------------------------------------- /design/app_mockups/balance-mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/app_mockups/balance-mockup.png -------------------------------------------------------------------------------- /design/app_mockups/teaser-mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/app_mockups/teaser-mockup.png -------------------------------------------------------------------------------- /design/app_mockups/track-mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/app_mockups/track-mockup.png -------------------------------------------------------------------------------- /design/assets/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/assets/menu.png -------------------------------------------------------------------------------- /design/assets/menu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/assets/menu@2x.png -------------------------------------------------------------------------------- /design/assets/sensmove.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/assets/sensmove.jpg -------------------------------------------------------------------------------- /design/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /design/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /design/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /design/fonts/varela round.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/fonts/varela round.otf -------------------------------------------------------------------------------- /design/graphic_kit/Icon : -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/graphic_kit/Icon -------------------------------------------------------------------------------- /design/graphic_kit/charte_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/graphic_kit/charte_v01.pdf -------------------------------------------------------------------------------- /design/graphic_kit/logo_negatif_strap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/graphic_kit/logo_negatif_strap.png -------------------------------------------------------------------------------- /design/graphic_kit/logo_nostrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/graphic_kit/logo_nostrap.png -------------------------------------------------------------------------------- /design/graphic_kit/logo_nostrap_fond.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/graphic_kit/logo_nostrap_fond.jpg -------------------------------------------------------------------------------- /design/graphic_kit/logo_strap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/graphic_kit/logo_strap.jpg -------------------------------------------------------------------------------- /design/graphic_kit/logo_strap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/graphic_kit/logo_strap.png -------------------------------------------------------------------------------- /design/graphic_kit/vectoriel/Icon : -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/graphic_kit/vectoriel/Icon -------------------------------------------------------------------------------- /design/landing_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/landing_page.jpg -------------------------------------------------------------------------------- /design/landing_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/landing_page.png -------------------------------------------------------------------------------- /design/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/logo.png -------------------------------------------------------------------------------- /design/sensmove-app.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/sensmove-app.psd -------------------------------------------------------------------------------- /design/sole.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/sole.ai -------------------------------------------------------------------------------- /design/splashscreen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/splashscreen.jpg -------------------------------------------------------------------------------- /design/splashscreen.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/splashscreen.psd -------------------------------------------------------------------------------- /design/splashscreen_exports/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/splashscreen_exports/Default-568h@2x.png -------------------------------------------------------------------------------- /design/splashscreen_exports/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/splashscreen_exports/Default-667h@2x.png -------------------------------------------------------------------------------- /design/splashscreen_exports/Default-Portrait-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/splashscreen_exports/Default-Portrait-736h@3x.png -------------------------------------------------------------------------------- /design/splashscreen_exports/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/splashscreen_exports/Default-Portrait.png -------------------------------------------------------------------------------- /design/splashscreen_exports/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/splashscreen_exports/Default-Portrait@2x.png -------------------------------------------------------------------------------- /design/splashscreen_exports/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/splashscreen_exports/Default.png -------------------------------------------------------------------------------- /design/splashscreen_exports/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/splashscreen_exports/Default@2x.png -------------------------------------------------------------------------------- /design/splashscreen_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/design/splashscreen_min.jpg -------------------------------------------------------------------------------- /documentation/electronic_design_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/documentation/electronic_design_schema.png -------------------------------------------------------------------------------- /documentation/prototype_sensmove.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/documentation/prototype_sensmove.jpg -------------------------------------------------------------------------------- /documentation/source/electronic_design.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/documentation/source/electronic_design.fzz -------------------------------------------------------------------------------- /hardware_development/libraries/Adafruit_BLE_UART/utility/aci_setup.h: -------------------------------------------------------------------------------- 1 | #ifndef H_ACI_SETUP 2 | #define H_ACI_SETUP 3 | 4 | #define ACI_CMD_Q_SIZE 16 5 | 6 | /** 7 | Do the ACI setup by sending the setup messages generated by the nRFgo studio to the nRF8001. 8 | After all the setup messages are sent. The nRF8001 will send a Device Started Event (Mode = STANDBY) 9 | */ 10 | aci_status_code_t do_aci_setup(aci_state_t *aci_stat); 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /hardware_development/libraries/Adafruit_BLE_UART/utility/dtm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/hardware_development/libraries/Adafruit_BLE_UART/utility/dtm.h -------------------------------------------------------------------------------- /hardware_development/libraries/Adafruit_BLE_UART/utility/lib_aci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/hardware_development/libraries/Adafruit_BLE_UART/utility/lib_aci.cpp -------------------------------------------------------------------------------- /hardware_development/libraries/Adafruit_BLE_UART/utility/lib_aci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/hardware_development/libraries/Adafruit_BLE_UART/utility/lib_aci.h -------------------------------------------------------------------------------- /hardware_development/libraries/Adafruit_LSM303DLHC-master/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.swo 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /hardware_development/libraries/Adafruit_Sensor-master/Adafruit_Sensor.cpp: -------------------------------------------------------------------------------- 1 | #include "Adafruit_Sensor.h" 2 | #include 3 | 4 | void Adafruit_Sensor::constructor() { 5 | } 6 | -------------------------------------------------------------------------------- /hardware_development/libraries/Adafruit_Sensor-master/Adafruit_Sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/hardware_development/libraries/Adafruit_Sensor-master/Adafruit_Sensor.h -------------------------------------------------------------------------------- /hardware_development/libraries/Time-master/examples/Processing/SyncArduinoClock/readme.txt: -------------------------------------------------------------------------------- 1 | SyncArduinoClock is a Processing sketch that responds to Arduino requests for 2 | time synchronization messages. 3 | 4 | The portIndex must be set the Serial port connected to Arduino. 5 | 6 | Download TimeSerial.pde onto Arduino and you should see the time 7 | message displayed when you run SyncArduinoClock in Processing. 8 | The Arduino time is set from the time on your computer through the 9 | Processing sketch. 10 | -------------------------------------------------------------------------------- /hardware_development/libraries/Time-master/library.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Time", 3 | "frameworks": "Arduino", 4 | "keywords": "Time, date, hour, minute, second, day, week, month, year, RTC", 5 | "description": "Time keeping library", 6 | "url": "http://playground.arduino.cc/Code/Time", 7 | "authors": 8 | [ 9 | { 10 | "name": "Michael Margolis" 11 | }, 12 | { 13 | "name": "Paul Stoffregen" 14 | } 15 | ], 16 | "repository": 17 | { 18 | "type": "git", 19 | "url": "https://github.com/PaulStoffregen/Time" 20 | } 21 | } 22 | 23 | -------------------------------------------------------------------------------- /hardware_development/libraries/Time-master/library.properties: -------------------------------------------------------------------------------- 1 | name=Time 2 | version=1.4 3 | author=Michael Margolis 4 | maintainer=Paul Stoffregen 5 | sentence=Timekeeping functionality for Arduino 6 | paragraph=Date and Time functions, with provisions to synchronize to external time sources like GPS and NTP (Internet). This library is often used together with TimeAlarms and DS1307RTC. 7 | category=Timing 8 | url=http://playground.arduino.cc/code/time 9 | architectures=* 10 | 11 | -------------------------------------------------------------------------------- /hardware_development/poc/bluetooth_LE/readme.md: -------------------------------------------------------------------------------- 1 | ### Arduino Bluetooth and Force Sensor Resistor Proof Of Concept 2 | 3 | The sketch allow you to send data from one sensor to an iOS Application 4 | 5 | ## How to install 6 | 7 | - Install the Adafruit_BLE_UART library in your arduino library folder 8 | - Download the iOS app nRF UART 9 | - Connect the nRF 8001 microchip to your Arduino chip 10 | - Run the associated sketch -------------------------------------------------------------------------------- /hardware_development/poc/force_visualisation/sens_dataviz_pde/sketch.properties: -------------------------------------------------------------------------------- 1 | mode.id=processing.mode.java.JavaMode 2 | mode=Java 3 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '6.0' 3 | 4 | target 'SMPOCChart' do 5 | pod 'ReactiveCocoa', '~> 2.3' 6 | pod 'PNChart', '~> 0.8.3' 7 | end 8 | 9 | target 'SMPOCChartTests' do 10 | pod 'ReactiveCocoa', '~> 2.3' 11 | pod 'PNChart', '~> 0.8.3' 12 | end 13 | 14 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/PNChart/PNBar.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNBar.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/PNChart/PNBarChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNBarChart.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/PNChart/PNChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNChart.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/PNChart/PNChartDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNChartDelegate.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/PNChart/PNChartLabel.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNChartLabel.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/PNChart/PNCircleChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNCircleChart.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/PNChart/PNColor.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNColor.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/PNChart/PNGenericChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNGenericChart.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/PNChart/PNLineChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNLineChart.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/PNChart/PNLineChartData.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNLineChartData.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/PNChart/PNLineChartDataItem.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNLineChartDataItem.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/PNChart/PNPieChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNPieChart.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/PNChart/PNPieChartDataItem.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNPieChartDataItem.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/PNChart/PNScatterChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNScatterChart.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/PNChart/PNScatterChartData.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNScatterChartData.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/PNChart/PNScatterChartDataItem.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNScatterChartDataItem.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/MKAnnotationView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/MKAnnotationView+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/NSArray+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSArray+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/NSData+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSData+RACSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/NSFileHandle+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSFileHandle+RACSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/NSInvocation+RACTypeParsing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSInvocation+RACTypeParsing.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/NSNotificationCenter+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSNotificationCenter+RACSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/NSObject+RACDeallocating.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACDeallocating.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/NSObject+RACDescription.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACDescription.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/NSObject+RACKVOWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACKVOWrapper.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/NSObject+RACLifting.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACLifting.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/NSObject+RACPropertySubscribing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACPropertySubscribing.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/NSObject+RACSelectorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACSelectorSignal.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/NSSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/NSString+RACKeyPathUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACKeyPathUtilities.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/NSString+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/NSString+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/NSURLConnection+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSURLConnection+RACSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/NSUserDefaults+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSUserDefaults+RACSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACArraySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACArraySequence.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACBehaviorSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACBehaviorSubject.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACBlockTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACBlockTrampoline.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACChannel.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACCommand.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACCommand.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACCompoundDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACCompoundDisposable.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACDelegateProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDelegateProxy.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDisposable.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACDynamicSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDynamicSequence.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACDynamicSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDynamicSignal.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACEXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTKeyPathCoding.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACEXTRuntimeExtensions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTRuntimeExtensions.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACEXTScope.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTScope.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACEagerSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEagerSequence.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACEmptySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEmptySequence.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACEmptySignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEmptySignal.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACErrorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACErrorSignal.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACEvent.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEvent.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACGroupedSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACGroupedSignal.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACImmediateScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACImmediateScheduler.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACIndexSetSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACIndexSetSequence.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACKVOChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOChannel.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACKVOProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOProxy.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACKVOTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOTrampoline.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACMulticastConnection+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACMulticastConnection+Private.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACMulticastConnection.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACMulticastConnection.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACObjCRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACObjCRuntime.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACPassthroughSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACPassthroughSubscriber.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACQueueScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACQueueScheduler+Subclass.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACQueueScheduler.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACReplaySubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACReplaySubject.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACReturnSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACReturnSignal.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACScheduler+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScheduler+Private.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScheduler+Subclass.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScheduler.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACScopedDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScopedDisposable.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSequence.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACSerialDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSerialDisposable.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACSignal+Operations.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignal+Operations.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignal.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACSignalSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignalSequence.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACStream+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACStream+Private.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACStream.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACStream.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACStringSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACStringSequence.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubject.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACSubscriber+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriber+Private.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriber.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACSubscriptionScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriptionScheduler.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACTargetQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTargetQueueScheduler.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACTestScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTestScheduler.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACTuple.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTuple.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACTupleSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTupleSequence.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACUnarySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACUnarySequence.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACUnit.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACUnit.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACValueTransformer.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/RACmetamacros.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACmetamacros.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/ReactiveCocoa.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/ReactiveCocoa.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/UIActionSheet+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIActionSheet+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/UIAlertView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIAlertView+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/UIButton+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIButton+RACCommandSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/UIControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIControl+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/UIDatePicker+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIDatePicker+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/UISlider+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISlider+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/UIStepper+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIStepper+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/UISwitch+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISwitch+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/UITableViewCell+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITableViewCell+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/UITextField+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITextField+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/ReactiveCocoa/UITextView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITextView+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Private/UICountingLabel/UICountingLabel.h: -------------------------------------------------------------------------------- 1 | ../../../UICountingLabel/UICountingLabel.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/PNChart/PNBar.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNBar.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/PNChart/PNBarChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNBarChart.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/PNChart/PNChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNChart.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/PNChart/PNChartDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNChartDelegate.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/PNChart/PNChartLabel.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNChartLabel.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/PNChart/PNCircleChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNCircleChart.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/PNChart/PNColor.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNColor.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/PNChart/PNGenericChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNGenericChart.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/PNChart/PNLineChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNLineChart.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/PNChart/PNLineChartData.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNLineChartData.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/PNChart/PNLineChartDataItem.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNLineChartDataItem.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/PNChart/PNPieChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNPieChart.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/PNChart/PNPieChartDataItem.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNPieChartDataItem.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/PNChart/PNScatterChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNScatterChart.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/PNChart/PNScatterChartData.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNScatterChartData.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/PNChart/PNScatterChartDataItem.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNScatterChartDataItem.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/MKAnnotationView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/MKAnnotationView+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/NSArray+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSArray+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/NSData+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSData+RACSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/NSFileHandle+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSFileHandle+RACSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/NSInvocation+RACTypeParsing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSInvocation+RACTypeParsing.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/NSNotificationCenter+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSNotificationCenter+RACSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/NSObject+RACDeallocating.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACDeallocating.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/NSObject+RACDescription.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACDescription.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/NSObject+RACKVOWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACKVOWrapper.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/NSObject+RACLifting.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACLifting.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/NSObject+RACPropertySubscribing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACPropertySubscribing.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/NSObject+RACSelectorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACSelectorSignal.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/NSSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/NSString+RACKeyPathUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACKeyPathUtilities.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/NSString+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/NSString+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/NSURLConnection+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSURLConnection+RACSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/NSUserDefaults+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSUserDefaults+RACSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACArraySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACArraySequence.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACBehaviorSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACBehaviorSubject.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACBlockTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACBlockTrampoline.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACChannel.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACCommand.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACCommand.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACCompoundDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACCompoundDisposable.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACDelegateProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDelegateProxy.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDisposable.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACDynamicSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDynamicSequence.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACDynamicSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDynamicSignal.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACEXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTKeyPathCoding.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACEXTRuntimeExtensions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTRuntimeExtensions.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACEXTScope.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTScope.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACEagerSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEagerSequence.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACEmptySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEmptySequence.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACEmptySignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEmptySignal.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACErrorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACErrorSignal.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACEvent.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEvent.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACGroupedSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACGroupedSignal.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACImmediateScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACImmediateScheduler.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACIndexSetSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACIndexSetSequence.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACKVOChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOChannel.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACKVOProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOProxy.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACKVOTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOTrampoline.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACMulticastConnection.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACMulticastConnection.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACObjCRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACObjCRuntime.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACPassthroughSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACPassthroughSubscriber.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACQueueScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACQueueScheduler+Subclass.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACQueueScheduler.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACReplaySubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACReplaySubject.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACReturnSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACReturnSignal.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScheduler+Subclass.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScheduler.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACScopedDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScopedDisposable.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSequence.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACSerialDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSerialDisposable.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACSignal+Operations.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignal+Operations.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignal.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACSignalSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignalSequence.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACStream.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACStream.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACStringSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACStringSequence.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubject.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriber.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACSubscriptionScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriptionScheduler.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACTargetQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTargetQueueScheduler.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACTestScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTestScheduler.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACTuple.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTuple.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACTupleSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTupleSequence.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACUnarySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACUnarySequence.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACUnit.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACUnit.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACValueTransformer.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/RACmetamacros.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACmetamacros.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/ReactiveCocoa.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/ReactiveCocoa.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/UIActionSheet+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIActionSheet+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/UIAlertView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIAlertView+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/UIButton+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIButton+RACCommandSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/UIControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIControl+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/UIDatePicker+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIDatePicker+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/UISlider+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISlider+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/UIStepper+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIStepper+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/UISwitch+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISwitch+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/UITableViewCell+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITableViewCell+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/UITextField+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITextField+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/ReactiveCocoa/UITextView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITextView+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Headers/Public/UICountingLabel/UICountingLabel.h: -------------------------------------------------------------------------------- 1 | ../../../UICountingLabel/UICountingLabel.h -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/PNChart/PNChart/PNChart.h: -------------------------------------------------------------------------------- 1 | // 2 | // PNChart.h 3 | // Version 0.1 4 | // PNChart 5 | // 6 | // Created by kevin on 10/3/13. 7 | // Copyright (c) 2013年 kevinzhow. All rights reserved. 8 | // 9 | 10 | #import 11 | #import "PNChart.h" 12 | #import "PNColor.h" 13 | #import "PNLineChart.h" 14 | #import "PNLineChartData.h" 15 | #import "PNLineChartDataItem.h" 16 | #import "PNBarChart.h" 17 | #import "PNCircleChart.h" 18 | #import "PNChartDelegate.h" 19 | #import "PNPieChart.h" 20 | #import "PNScatterChart.h" 21 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/PNChart/PNChart/PNChartLabel.h: -------------------------------------------------------------------------------- 1 | // 2 | // PNChartLabel.h 3 | // PNChart 4 | // 5 | // Created by kevin on 10/3/13. 6 | // Copyright (c) 2013年 kevinzhow. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface PNChartLabel : UILabel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/PNChart/PNChart/PNLineChartDataItem.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Jörg Polakowski on 14/12/13. 3 | // Copyright (c) 2013 kevinzhow. All rights reserved. 4 | // 5 | 6 | #import 7 | #import 8 | 9 | @interface PNLineChartDataItem : NSObject 10 | 11 | + (PNLineChartDataItem *)dataItemWithY:(CGFloat)y; 12 | 13 | @property (readonly) CGFloat y; // should be within the y range 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/ReactiveCocoa/ReactiveCocoa/NSArray+RACSequenceAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSArray+RACSequenceAdditions.m 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2012-10-29. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | 9 | #import "NSArray+RACSequenceAdditions.h" 10 | #import "RACArraySequence.h" 11 | 12 | @implementation NSArray (RACSequenceAdditions) 13 | 14 | - (RACSequence *)rac_sequence { 15 | return [RACArraySequence sequenceWithArray:self offset:0]; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/ReactiveCocoa/ReactiveCocoa/NSFileHandle+RACSupport.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSFileHandle+RACSupport.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 5/10/12. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class RACSignal; 12 | 13 | @interface NSFileHandle (RACSupport) 14 | 15 | // Read any available data in the background and send it. Completes when data 16 | // length is <= 0. 17 | - (RACSignal *)rac_readInBackground; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/ReactiveCocoa/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSIndexSet+RACSequenceAdditions.m 3 | // ReactiveCocoa 4 | // 5 | // Created by Sergey Gavrilyuk on 12/17/13. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "NSIndexSet+RACSequenceAdditions.h" 10 | #import "RACIndexSetSequence.h" 11 | 12 | @implementation NSIndexSet (RACSequenceAdditions) 13 | 14 | - (RACSequence *)rac_sequence { 15 | return [RACIndexSetSequence sequenceWithIndexSet:self]; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/ReactiveCocoa/ReactiveCocoa/NSString+RACSequenceAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+RACSequenceAdditions.m 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2012-10-29. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | 9 | #import "NSString+RACSequenceAdditions.h" 10 | #import "RACStringSequence.h" 11 | 12 | @implementation NSString (RACSequenceAdditions) 13 | 14 | - (RACSequence *)rac_sequence { 15 | return [RACStringSequence sequenceWithString:self offset:0]; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/ReactiveCocoa/ReactiveCocoa/RACCompoundDisposableProvider.d: -------------------------------------------------------------------------------- 1 | provider RACCompoundDisposable { 2 | probe added(char *compoundDisposable, char *disposable, long newTotal); 3 | probe removed(char *compoundDisposable, char *disposable, long newTotal); 4 | }; 5 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/ReactiveCocoa/ReactiveCocoa/RACDynamicSignal.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACDynamicSignal.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2013-10-10. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSignal.h" 10 | 11 | // A private `RACSignal` subclasses that implements its subscription behavior 12 | // using a block. 13 | @interface RACDynamicSignal : RACSignal 14 | 15 | + (RACSignal *)createSignal:(RACDisposable * (^)(id subscriber))didSubscribe; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/ReactiveCocoa/ReactiveCocoa/RACEagerSequence.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACEagerSequence.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Uri Baghin on 02/01/2013. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACArraySequence.h" 10 | 11 | // Private class that implements an eager sequence. 12 | @interface RACEagerSequence : RACArraySequence 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/ReactiveCocoa/ReactiveCocoa/RACEmptySequence.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACEmptySequence.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2012-10-29. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | 9 | #import "RACSequence.h" 10 | 11 | // Private class representing an empty sequence. 12 | @interface RACEmptySequence : RACSequence 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/ReactiveCocoa/ReactiveCocoa/RACEmptySignal.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACEmptySignal.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2013-10-10. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSignal.h" 10 | 11 | // A private `RACSignal` subclasses that synchronously sends completed to any 12 | // subscribers. 13 | @interface RACEmptySignal : RACSignal 14 | 15 | + (RACSignal *)empty; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/ReactiveCocoa/ReactiveCocoa/RACErrorSignal.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACErrorSignal.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2013-10-10. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSignal.h" 10 | 11 | // A private `RACSignal` subclasses that synchronously sends an error to any 12 | // subscribers. 13 | @interface RACErrorSignal : RACSignal 14 | 15 | + (RACSignal *)error:(NSError *)error; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/ReactiveCocoa/ReactiveCocoa/RACImmediateScheduler.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACImmediateScheduler.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 11/30/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACScheduler.h" 10 | 11 | // A private scheduler which immediately executes its scheduled blocks. 12 | @interface RACImmediateScheduler : RACScheduler 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/ReactiveCocoa/ReactiveCocoa/RACIndexSetSequence.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACIndexSetSequence.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Sergey Gavrilyuk on 12/18/13. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSequence.h" 10 | 11 | // Private class that adapts an array to the RACSequence interface. 12 | @interface RACIndexSetSequence : RACSequence 13 | 14 | + (instancetype)sequenceWithIndexSet:(NSIndexSet *)indexSet; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/ReactiveCocoa/ReactiveCocoa/RACMulticastConnection+Private.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACMulticastConnection+Private.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 4/11/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACMulticastConnection.h" 10 | 11 | @class RACSubject; 12 | 13 | @interface RACMulticastConnection () 14 | 15 | - (id)initWithSourceSignal:(RACSignal *)source subject:(RACSubject *)subject; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/ReactiveCocoa/ReactiveCocoa/RACReturnSignal.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACReturnSignal.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2013-10-10. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSignal.h" 10 | 11 | // A private `RACSignal` subclasses that synchronously sends a value to any 12 | // subscribers, then completes. 13 | @interface RACReturnSignal : RACSignal 14 | 15 | + (RACSignal *)return:(id)value; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/ReactiveCocoa/ReactiveCocoa/RACSignalProvider.d: -------------------------------------------------------------------------------- 1 | provider RACSignal { 2 | probe next(char *signal, char *subscriber, char *valueDescription); 3 | probe completed(char *signal, char *subscriber); 4 | probe error(char *signal, char *subscriber, char *errorDescription); 5 | }; 6 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/ReactiveCocoa/ReactiveCocoa/RACSubscriptionScheduler.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACSubscriptionScheduler.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 11/30/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACScheduler.h" 10 | 11 | // A private scheduler used only for subscriptions. See the private 12 | // +[RACScheduler subscriptionScheduler] method for more information. 13 | @interface RACSubscriptionScheduler : RACScheduler 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/ReactiveCocoa/ReactiveCocoa/RACUnarySequence.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACUnarySequence.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2013-05-01. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSequence.h" 10 | 11 | // Private class representing a sequence of exactly one value. 12 | @interface RACUnarySequence : RACSequence 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/ReactiveCocoa/ReactiveCocoa/RACUnit.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACUnit.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 3/27/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /// A unit represents an empty value. 12 | /// 13 | /// It should never be necessary to create a unit yourself. Just use +defaultUnit. 14 | @interface RACUnit : NSObject 15 | 16 | /// A singleton instance. 17 | + (RACUnit *)defaultUnit; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/ReactiveCocoa/ReactiveCocoa/RACValueTransformer.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACValueTransformer.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 3/6/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | // A private block based transformer. 12 | @interface RACValueTransformer : NSValueTransformer 13 | 14 | + (instancetype)transformerWithBlock:(id (^)(id value))block; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/ReactiveCocoa/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIGestureRecognizer+RACSignalSupport.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Vera on 5/5/13. 6 | // Copyright (c) 2013 GitHub. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class RACSignal; 12 | 13 | @interface UIGestureRecognizer (RACSignalSupport) 14 | 15 | /// Returns a signal that sends the receiver when its gesture occurs. 16 | - (RACSignal *)rac_gestureSignal; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChart-PNChart/Pods-SMPOCChart-PNChart-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-SMPOCChart-PNChart.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/PNChart" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/PNChart" "${PODS_ROOT}/Headers/Public/ReactiveCocoa" "${PODS_ROOT}/Headers/Public/UICountingLabel" 4 | OTHER_LDFLAGS = ${PODS_SMPOCCHART_PNCHART_OTHER_LDFLAGS} -ObjC 5 | PODS_ROOT = ${SRCROOT} 6 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChart-PNChart/Pods-SMPOCChart-PNChart-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SMPOCChart_PNChart : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SMPOCChart_PNChart 5 | @end 6 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChart-PNChart/Pods-SMPOCChart-PNChart-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-SMPOCChart-environment.h" 6 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChart-PNChart/Pods-SMPOCChart-PNChart.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_SMPOCCHART_PNCHART_OTHER_LDFLAGS = -framework "CoreGraphics" -framework "Foundation" -framework "QuartzCore" -framework "UIKit" -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChart-ReactiveCocoa/Pods-SMPOCChart-ReactiveCocoa-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-SMPOCChart-ReactiveCocoa.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/ReactiveCocoa" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/PNChart" "${PODS_ROOT}/Headers/Public/ReactiveCocoa" "${PODS_ROOT}/Headers/Public/UICountingLabel" 4 | OTHER_LDFLAGS = -ObjC 5 | PODS_ROOT = ${SRCROOT} 6 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChart-ReactiveCocoa/Pods-SMPOCChart-ReactiveCocoa-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SMPOCChart_ReactiveCocoa : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SMPOCChart_ReactiveCocoa 5 | @end 6 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChart-ReactiveCocoa/Pods-SMPOCChart-ReactiveCocoa-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-SMPOCChart-environment.h" 6 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChart-ReactiveCocoa/Pods-SMPOCChart-ReactiveCocoa.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChart-ReactiveCocoa/Pods-SMPOCChart-ReactiveCocoa.xcconfig -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChart-UICountingLabel/Pods-SMPOCChart-UICountingLabel-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-SMPOCChart-UICountingLabel.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/UICountingLabel" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/PNChart" "${PODS_ROOT}/Headers/Public/ReactiveCocoa" "${PODS_ROOT}/Headers/Public/UICountingLabel" 4 | OTHER_LDFLAGS = -ObjC 5 | PODS_ROOT = ${SRCROOT} 6 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChart-UICountingLabel/Pods-SMPOCChart-UICountingLabel-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SMPOCChart_UICountingLabel : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SMPOCChart_UICountingLabel 5 | @end 6 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChart-UICountingLabel/Pods-SMPOCChart-UICountingLabel-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-SMPOCChart-environment.h" 6 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChart-UICountingLabel/Pods-SMPOCChart-UICountingLabel.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChart-UICountingLabel/Pods-SMPOCChart-UICountingLabel.xcconfig -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChart/Pods-SMPOCChart-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SMPOCChart : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SMPOCChart 5 | @end 6 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChartTests-PNChart/Pods-SMPOCChartTests-PNChart-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SMPOCChartTests_PNChart : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SMPOCChartTests_PNChart 5 | @end 6 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChartTests-PNChart/Pods-SMPOCChartTests-PNChart-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-SMPOCChartTests-environment.h" 6 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChartTests-PNChart/Pods-SMPOCChartTests-PNChart.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_SMPOCCHARTTESTS_PNCHART_OTHER_LDFLAGS = -framework "CoreGraphics" -framework "Foundation" -framework "QuartzCore" -framework "UIKit" -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChartTests-ReactiveCocoa/Pods-SMPOCChartTests-ReactiveCocoa-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-SMPOCChartTests-ReactiveCocoa.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/ReactiveCocoa" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/PNChart" "${PODS_ROOT}/Headers/Public/ReactiveCocoa" "${PODS_ROOT}/Headers/Public/UICountingLabel" 4 | OTHER_LDFLAGS = -ObjC 5 | PODS_ROOT = ${SRCROOT} 6 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChartTests-ReactiveCocoa/Pods-SMPOCChartTests-ReactiveCocoa-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SMPOCChartTests_ReactiveCocoa : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SMPOCChartTests_ReactiveCocoa 5 | @end 6 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChartTests-ReactiveCocoa/Pods-SMPOCChartTests-ReactiveCocoa-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-SMPOCChartTests-environment.h" 6 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChartTests-ReactiveCocoa/Pods-SMPOCChartTests-ReactiveCocoa.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChartTests-ReactiveCocoa/Pods-SMPOCChartTests-ReactiveCocoa.xcconfig -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChartTests-UICountingLabel/Pods-SMPOCChartTests-UICountingLabel-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SMPOCChartTests_UICountingLabel : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SMPOCChartTests_UICountingLabel 5 | @end 6 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChartTests-UICountingLabel/Pods-SMPOCChartTests-UICountingLabel-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-SMPOCChartTests-environment.h" 6 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChartTests-UICountingLabel/Pods-SMPOCChartTests-UICountingLabel.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChartTests-UICountingLabel/Pods-SMPOCChartTests-UICountingLabel.xcconfig -------------------------------------------------------------------------------- /ios_development/SMPOCChart/Pods/Target Support Files/Pods-SMPOCChartTests/Pods-SMPOCChartTests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SMPOCChartTests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SMPOCChartTests 5 | @end 6 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/SMPOCChart-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Use this file to import your target's public headers that you would like to expose to Swift. 3 | // 4 | 5 | #import 6 | #import -------------------------------------------------------------------------------- /ios_development/SMPOCChart/SMPOCChart.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/SMPOCChart.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ios_development/SMPOCChart/SMPOCChart/RACObserve.swift: -------------------------------------------------------------------------------- 1 | // 2 | // RACObserve.swift 3 | // ReactiveSwiftFlickrSearch 4 | // 5 | // Created by Colin Eberhardt on 15/07/2014. 6 | // Copyright (c) 2014 Colin Eberhardt. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | // replaces the RACObserve macro 12 | func RACObserve(target: NSObject!, keyPath: String) -> RACSignal { 13 | return target.rac_valuesForKeyPath(keyPath, observer: target) 14 | } -------------------------------------------------------------------------------- /ios_development/sensmove/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | platform :ios, '8.0' 3 | 4 | target 'sensmove' do 5 | pod 'AMSlideMenu', '~> 1.5.4' 6 | pod 'ReactiveCocoa', '~> 2.5' 7 | pod 'PNChart', '0.8.5' 8 | end 9 | 10 | target 'sensmoveTests' do 11 | pod 'AMSlideMenu', '~> 1.5.4' 12 | end 13 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/CryptoSwift/CryptoSwift/BitExtension.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BitExtension.swift 3 | // CryptoSwift 4 | // 5 | // Created by Marcin Krzyzanowski on 01/09/14. 6 | // Copyright (c) 2014 Marcin Krzyzanowski. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | extension Bit { 12 | 13 | func inverted() -> Bit { 14 | if (self == Bit.Zero) { 15 | return Bit.One 16 | } 17 | 18 | return Bit.Zero 19 | } 20 | 21 | mutating func invert() { 22 | self = self.inverted() 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/CryptoSwift/CryptoSwift/Padding.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Padding.swift 3 | // CryptoSwift 4 | // 5 | // Created by Marcin Krzyzanowski on 27/02/15. 6 | // Copyright (c) 2015 Marcin Krzyzanowski. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public protocol Padding { 12 | func add(data: [UInt8], blockSize:Int) -> [UInt8]; 13 | func remove(data: [UInt8], blockSize:Int?) -> [UInt8]; 14 | } -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/AMSlideMenu/AMSlideMenuContentSegue.h: -------------------------------------------------------------------------------- 1 | ../../../AMSlideMenu/AMSlideMenu/AMSlideMenuContentSegue.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/AMSlideMenu/AMSlideMenuLeftMenuSegue.h: -------------------------------------------------------------------------------- 1 | ../../../AMSlideMenu/AMSlideMenu/AMSlideMenuLeftMenuSegue.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/AMSlideMenu/AMSlideMenuLeftTableViewController.h: -------------------------------------------------------------------------------- 1 | ../../../AMSlideMenu/AMSlideMenu/AMSlideMenuLeftTableViewController.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/AMSlideMenu/AMSlideMenuMainViewController.h: -------------------------------------------------------------------------------- 1 | ../../../AMSlideMenu/AMSlideMenu/AMSlideMenuMainViewController.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/AMSlideMenu/AMSlideMenuProtocols.h: -------------------------------------------------------------------------------- 1 | ../../../AMSlideMenu/AMSlideMenu/AMSlideMenuProtocols.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/AMSlideMenu/AMSlideMenuRightMenuSegue.h: -------------------------------------------------------------------------------- 1 | ../../../AMSlideMenu/AMSlideMenu/AMSlideMenuRightMenuSegue.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/AMSlideMenu/AMSlideMenuRightTableViewController.h: -------------------------------------------------------------------------------- 1 | ../../../AMSlideMenu/AMSlideMenu/AMSlideMenuRightTableViewController.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/AMSlideMenu/UIViewController+AMSlideMenu.h: -------------------------------------------------------------------------------- 1 | ../../../AMSlideMenu/AMSlideMenu/UIViewController+AMSlideMenu.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/PNChart/PNBar.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNBar.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/PNChart/PNBarChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNBarChart.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/PNChart/PNChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNChart.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/PNChart/PNChartDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNChartDelegate.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/PNChart/PNChartLabel.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNChartLabel.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/PNChart/PNCircleChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNCircleChart.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/PNChart/PNColor.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNColor.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/PNChart/PNGenericChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNGenericChart.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/PNChart/PNLineChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNLineChart.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/PNChart/PNLineChartData.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNLineChartData.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/PNChart/PNLineChartDataItem.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNLineChartDataItem.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/PNChart/PNPieChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNPieChart.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/PNChart/PNPieChartDataItem.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNPieChartDataItem.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/PNChart/PNScatterChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNScatterChart.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/PNChart/PNScatterChartData.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNScatterChartData.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/PNChart/PNScatterChartDataItem.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNScatterChartDataItem.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/MKAnnotationView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/MKAnnotationView+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/NSArray+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSArray+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/NSData+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSData+RACSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/NSFileHandle+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSFileHandle+RACSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/NSInvocation+RACTypeParsing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSInvocation+RACTypeParsing.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/NSNotificationCenter+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSNotificationCenter+RACSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/NSObject+RACDeallocating.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACDeallocating.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/NSObject+RACDescription.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACDescription.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/NSObject+RACKVOWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACKVOWrapper.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/NSObject+RACLifting.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACLifting.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/NSObject+RACPropertySubscribing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACPropertySubscribing.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/NSObject+RACSelectorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACSelectorSignal.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/NSSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/NSString+RACKeyPathUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACKeyPathUtilities.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/NSString+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/NSString+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/NSURLConnection+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSURLConnection+RACSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/NSUserDefaults+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSUserDefaults+RACSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACArraySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACArraySequence.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACBehaviorSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACBehaviorSubject.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACBlockTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACBlockTrampoline.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACChannel.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACCommand.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACCommand.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACCompoundDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACCompoundDisposable.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACDelegateProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDelegateProxy.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDisposable.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACDynamicSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDynamicSequence.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACDynamicSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDynamicSignal.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACEXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTKeyPathCoding.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACEXTRuntimeExtensions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTRuntimeExtensions.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACEXTScope.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTScope.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACEagerSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEagerSequence.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACEmptySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEmptySequence.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACEmptySignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEmptySignal.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACErrorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACErrorSignal.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACEvent.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEvent.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACGroupedSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACGroupedSignal.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACImmediateScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACImmediateScheduler.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACIndexSetSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACIndexSetSequence.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACKVOChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOChannel.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACKVOProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOProxy.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACKVOTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOTrampoline.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACMulticastConnection+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACMulticastConnection+Private.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACMulticastConnection.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACMulticastConnection.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACObjCRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACObjCRuntime.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACPassthroughSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACPassthroughSubscriber.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACQueueScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACQueueScheduler+Subclass.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACQueueScheduler.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACReplaySubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACReplaySubject.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACReturnSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACReturnSignal.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACScheduler+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScheduler+Private.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScheduler+Subclass.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScheduler.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACScopedDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScopedDisposable.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSequence.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACSerialDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSerialDisposable.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACSignal+Operations.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignal+Operations.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignal.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACSignalSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignalSequence.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACStream+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACStream+Private.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACStream.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACStream.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACStringSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACStringSequence.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubject.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACSubscriber+Private.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriber+Private.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriber.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACSubscriptionScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriptionScheduler.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACTargetQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTargetQueueScheduler.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACTestScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTestScheduler.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACTuple.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTuple.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACTupleSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTupleSequence.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACUnarySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACUnarySequence.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACUnit.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACUnit.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACValueTransformer.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/RACmetamacros.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACmetamacros.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/ReactiveCocoa.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/ReactiveCocoa.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/UIActionSheet+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIActionSheet+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/UIAlertView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIAlertView+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/UIButton+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIButton+RACCommandSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/UIControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIControl+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/UIDatePicker+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIDatePicker+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/UISlider+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISlider+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/UIStepper+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIStepper+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/UISwitch+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISwitch+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/UITableViewCell+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITableViewCell+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/UITextField+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITextField+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/ReactiveCocoa/UITextView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITextView+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Private/UICountingLabel/UICountingLabel.h: -------------------------------------------------------------------------------- 1 | ../../../UICountingLabel/UICountingLabel.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/AMSlideMenu/AMSlideMenuContentSegue.h: -------------------------------------------------------------------------------- 1 | ../../../AMSlideMenu/AMSlideMenu/AMSlideMenuContentSegue.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/AMSlideMenu/AMSlideMenuLeftMenuSegue.h: -------------------------------------------------------------------------------- 1 | ../../../AMSlideMenu/AMSlideMenu/AMSlideMenuLeftMenuSegue.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/AMSlideMenu/AMSlideMenuLeftTableViewController.h: -------------------------------------------------------------------------------- 1 | ../../../AMSlideMenu/AMSlideMenu/AMSlideMenuLeftTableViewController.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/AMSlideMenu/AMSlideMenuMainViewController.h: -------------------------------------------------------------------------------- 1 | ../../../AMSlideMenu/AMSlideMenu/AMSlideMenuMainViewController.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/AMSlideMenu/AMSlideMenuProtocols.h: -------------------------------------------------------------------------------- 1 | ../../../AMSlideMenu/AMSlideMenu/AMSlideMenuProtocols.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/AMSlideMenu/AMSlideMenuRightMenuSegue.h: -------------------------------------------------------------------------------- 1 | ../../../AMSlideMenu/AMSlideMenu/AMSlideMenuRightMenuSegue.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/AMSlideMenu/AMSlideMenuRightTableViewController.h: -------------------------------------------------------------------------------- 1 | ../../../AMSlideMenu/AMSlideMenu/AMSlideMenuRightTableViewController.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/AMSlideMenu/UIViewController+AMSlideMenu.h: -------------------------------------------------------------------------------- 1 | ../../../AMSlideMenu/AMSlideMenu/UIViewController+AMSlideMenu.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/PNChart/PNBar.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNBar.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/PNChart/PNBarChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNBarChart.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/PNChart/PNChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNChart.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/PNChart/PNChartDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNChartDelegate.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/PNChart/PNChartLabel.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNChartLabel.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/PNChart/PNCircleChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNCircleChart.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/PNChart/PNColor.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNColor.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/PNChart/PNGenericChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNGenericChart.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/PNChart/PNLineChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNLineChart.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/PNChart/PNLineChartData.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNLineChartData.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/PNChart/PNLineChartDataItem.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNLineChartDataItem.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/PNChart/PNPieChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNPieChart.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/PNChart/PNPieChartDataItem.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNPieChartDataItem.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/PNChart/PNScatterChart.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNScatterChart.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/PNChart/PNScatterChartData.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNScatterChartData.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/PNChart/PNScatterChartDataItem.h: -------------------------------------------------------------------------------- 1 | ../../../PNChart/PNChart/PNScatterChartDataItem.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/MKAnnotationView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/MKAnnotationView+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/NSArray+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSArray+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/NSData+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSData+RACSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSDictionary+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSEnumerator+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/NSFileHandle+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSFileHandle+RACSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/NSInvocation+RACTypeParsing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSInvocation+RACTypeParsing.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/NSNotificationCenter+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSNotificationCenter+RACSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/NSObject+RACDeallocating.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACDeallocating.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/NSObject+RACDescription.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACDescription.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/NSObject+RACKVOWrapper.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACKVOWrapper.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/NSObject+RACLifting.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACLifting.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/NSObject+RACPropertySubscribing.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACPropertySubscribing.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/NSObject+RACSelectorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSObject+RACSelectorSignal.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSOrderedSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/NSSet+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSSet+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/NSString+RACKeyPathUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACKeyPathUtilities.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/NSString+RACSequenceAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACSequenceAdditions.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/NSString+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSString+RACSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/NSURLConnection+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSURLConnection+RACSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/NSUserDefaults+RACSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/NSUserDefaults+RACSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACArraySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACArraySequence.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACBehaviorSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACBehaviorSubject.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACBlockTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACBlockTrampoline.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACChannel.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACCommand.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACCommand.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACCompoundDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACCompoundDisposable.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACDelegateProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDelegateProxy.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDisposable.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACDynamicSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDynamicSequence.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACDynamicSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACDynamicSignal.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACEXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTKeyPathCoding.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACEXTRuntimeExtensions.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTRuntimeExtensions.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACEXTScope.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACEXTScope.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACEagerSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEagerSequence.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACEmptySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEmptySequence.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACEmptySignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEmptySignal.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACErrorSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACErrorSignal.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACEvent.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACEvent.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACGroupedSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACGroupedSignal.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACImmediateScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACImmediateScheduler.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACIndexSetSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACIndexSetSequence.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACKVOChannel.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOChannel.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACKVOProxy.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOProxy.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACKVOTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACKVOTrampoline.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACMulticastConnection.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACMulticastConnection.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACObjCRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACObjCRuntime.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACPassthroughSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACPassthroughSubscriber.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACQueueScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACQueueScheduler+Subclass.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACQueueScheduler.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACReplaySubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACReplaySubject.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACReturnSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACReturnSignal.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACScheduler+Subclass.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScheduler+Subclass.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScheduler.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACScopedDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACScopedDisposable.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSequence.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACSerialDisposable.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSerialDisposable.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACSignal+Operations.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignal+Operations.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACSignal.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignal.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACSignalSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSignalSequence.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACStream.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACStream.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACStringSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACStringSequence.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACSubject.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubject.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACSubscriber.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriber.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriptingAssignmentTrampoline.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACSubscriptionScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACSubscriptionScheduler.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACTargetQueueScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTargetQueueScheduler.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACTestScheduler.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTestScheduler.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACTuple.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTuple.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACTupleSequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACTupleSequence.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACUnarySequence.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACUnarySequence.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACUnit.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACUnit.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/RACValueTransformer.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/RACmetamacros.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/extobjc/RACmetamacros.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/ReactiveCocoa.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/ReactiveCocoa.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/UIActionSheet+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIActionSheet+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/UIAlertView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIAlertView+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIBarButtonItem+RACCommandSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/UIButton+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIButton+RACCommandSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UICollectionReusableView+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/UIControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIControl+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIControl+RACSignalSupportPrivate.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/UIDatePicker+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIDatePicker+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIImagePickerController+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIRefreshControl+RACCommandSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISegmentedControl+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/UISlider+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISlider+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/UIStepper+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UIStepper+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/UISwitch+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UISwitch+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/UITableViewCell+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITableViewCell+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITableViewHeaderFooterView+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/UITextField+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITextField+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/ReactiveCocoa/UITextView+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | ../../../ReactiveCocoa/ReactiveCocoa/UITextView+RACSignalSupport.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Headers/Public/UICountingLabel/UICountingLabel.h: -------------------------------------------------------------------------------- 1 | ../../../UICountingLabel/UICountingLabel.h -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/PNChart/PNChart/PNChart.h: -------------------------------------------------------------------------------- 1 | // 2 | // PNChart.h 3 | // Version 0.1 4 | // PNChart 5 | // 6 | // Created by kevin on 10/3/13. 7 | // Copyright (c) 2013年 kevinzhow. All rights reserved. 8 | // 9 | 10 | #import 11 | #import "PNChart.h" 12 | #import "PNColor.h" 13 | #import "PNLineChart.h" 14 | #import "PNLineChartData.h" 15 | #import "PNLineChartDataItem.h" 16 | #import "PNBarChart.h" 17 | #import "PNCircleChart.h" 18 | #import "PNChartDelegate.h" 19 | #import "PNPieChart.h" 20 | #import "PNScatterChart.h" 21 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/PNChart/PNChart/PNChartLabel.h: -------------------------------------------------------------------------------- 1 | // 2 | // PNChartLabel.h 3 | // PNChart 4 | // 5 | // Created by kevin on 10/3/13. 6 | // Copyright (c) 2013年 kevinzhow. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface PNChartLabel : UILabel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/PNChart/PNChart/PNLineChartDataItem.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Jörg Polakowski on 14/12/13. 3 | // Copyright (c) 2013 kevinzhow. All rights reserved. 4 | // 5 | 6 | #import 7 | #import 8 | 9 | @interface PNLineChartDataItem : NSObject 10 | 11 | + (PNLineChartDataItem *)dataItemWithY:(CGFloat)y; 12 | 13 | @property (readonly) CGFloat y; // should be within the y range 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/ReactiveCocoa/ReactiveCocoa/NSArray+RACSequenceAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSArray+RACSequenceAdditions.m 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2012-10-29. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | 9 | #import "NSArray+RACSequenceAdditions.h" 10 | #import "RACArraySequence.h" 11 | 12 | @implementation NSArray (RACSequenceAdditions) 13 | 14 | - (RACSequence *)rac_sequence { 15 | return [RACArraySequence sequenceWithArray:self offset:0]; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/ReactiveCocoa/ReactiveCocoa/NSFileHandle+RACSupport.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSFileHandle+RACSupport.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 5/10/12. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class RACSignal; 12 | 13 | @interface NSFileHandle (RACSupport) 14 | 15 | // Read any available data in the background and send it. Completes when data 16 | // length is <= 0. 17 | - (RACSignal *)rac_readInBackground; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/ReactiveCocoa/ReactiveCocoa/NSIndexSet+RACSequenceAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSIndexSet+RACSequenceAdditions.m 3 | // ReactiveCocoa 4 | // 5 | // Created by Sergey Gavrilyuk on 12/17/13. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "NSIndexSet+RACSequenceAdditions.h" 10 | #import "RACIndexSetSequence.h" 11 | 12 | @implementation NSIndexSet (RACSequenceAdditions) 13 | 14 | - (RACSequence *)rac_sequence { 15 | return [RACIndexSetSequence sequenceWithIndexSet:self]; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/ReactiveCocoa/ReactiveCocoa/NSString+RACSequenceAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+RACSequenceAdditions.m 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2012-10-29. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | 9 | #import "NSString+RACSequenceAdditions.h" 10 | #import "RACStringSequence.h" 11 | 12 | @implementation NSString (RACSequenceAdditions) 13 | 14 | - (RACSequence *)rac_sequence { 15 | return [RACStringSequence sequenceWithString:self offset:0]; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/ReactiveCocoa/ReactiveCocoa/RACCompoundDisposableProvider.d: -------------------------------------------------------------------------------- 1 | provider RACCompoundDisposable { 2 | probe added(char *compoundDisposable, char *disposable, long newTotal); 3 | probe removed(char *compoundDisposable, char *disposable, long newTotal); 4 | }; 5 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/ReactiveCocoa/ReactiveCocoa/RACDynamicSignal.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACDynamicSignal.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2013-10-10. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSignal.h" 10 | 11 | // A private `RACSignal` subclasses that implements its subscription behavior 12 | // using a block. 13 | @interface RACDynamicSignal : RACSignal 14 | 15 | + (RACSignal *)createSignal:(RACDisposable * (^)(id subscriber))didSubscribe; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/ReactiveCocoa/ReactiveCocoa/RACEagerSequence.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACEagerSequence.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Uri Baghin on 02/01/2013. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACArraySequence.h" 10 | 11 | // Private class that implements an eager sequence. 12 | @interface RACEagerSequence : RACArraySequence 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/ReactiveCocoa/ReactiveCocoa/RACEmptySequence.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACEmptySequence.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2012-10-29. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | 9 | #import "RACSequence.h" 10 | 11 | // Private class representing an empty sequence. 12 | @interface RACEmptySequence : RACSequence 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/ReactiveCocoa/ReactiveCocoa/RACEmptySignal.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACEmptySignal.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2013-10-10. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSignal.h" 10 | 11 | // A private `RACSignal` subclasses that synchronously sends completed to any 12 | // subscribers. 13 | @interface RACEmptySignal : RACSignal 14 | 15 | + (RACSignal *)empty; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/ReactiveCocoa/ReactiveCocoa/RACErrorSignal.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACErrorSignal.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2013-10-10. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSignal.h" 10 | 11 | // A private `RACSignal` subclasses that synchronously sends an error to any 12 | // subscribers. 13 | @interface RACErrorSignal : RACSignal 14 | 15 | + (RACSignal *)error:(NSError *)error; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/ReactiveCocoa/ReactiveCocoa/RACImmediateScheduler.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACImmediateScheduler.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 11/30/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACScheduler.h" 10 | 11 | // A private scheduler which immediately executes its scheduled blocks. 12 | @interface RACImmediateScheduler : RACScheduler 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/ReactiveCocoa/ReactiveCocoa/RACIndexSetSequence.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACIndexSetSequence.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Sergey Gavrilyuk on 12/18/13. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSequence.h" 10 | 11 | // Private class that adapts an array to the RACSequence interface. 12 | @interface RACIndexSetSequence : RACSequence 13 | 14 | + (instancetype)sequenceWithIndexSet:(NSIndexSet *)indexSet; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/ReactiveCocoa/ReactiveCocoa/RACMulticastConnection+Private.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACMulticastConnection+Private.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 4/11/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACMulticastConnection.h" 10 | 11 | @class RACSubject; 12 | 13 | @interface RACMulticastConnection () 14 | 15 | - (id)initWithSourceSignal:(RACSignal *)source subject:(RACSubject *)subject; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/ReactiveCocoa/ReactiveCocoa/RACReturnSignal.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACReturnSignal.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2013-10-10. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSignal.h" 10 | 11 | // A private `RACSignal` subclasses that synchronously sends a value to any 12 | // subscribers, then completes. 13 | @interface RACReturnSignal : RACSignal 14 | 15 | + (RACSignal *)return:(id)value; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/ReactiveCocoa/ReactiveCocoa/RACSignalProvider.d: -------------------------------------------------------------------------------- 1 | provider RACSignal { 2 | probe next(char *signal, char *subscriber, char *valueDescription); 3 | probe completed(char *signal, char *subscriber); 4 | probe error(char *signal, char *subscriber, char *errorDescription); 5 | }; 6 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/ReactiveCocoa/ReactiveCocoa/RACSubscriptionScheduler.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACSubscriptionScheduler.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 11/30/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACScheduler.h" 10 | 11 | // A private scheduler used only for subscriptions. See the private 12 | // +[RACScheduler subscriptionScheduler] method for more information. 13 | @interface RACSubscriptionScheduler : RACScheduler 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/ReactiveCocoa/ReactiveCocoa/RACUnarySequence.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACUnarySequence.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Justin Spahr-Summers on 2013-05-01. 6 | // Copyright (c) 2013 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import "RACSequence.h" 10 | 11 | // Private class representing a sequence of exactly one value. 12 | @interface RACUnarySequence : RACSequence 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/ReactiveCocoa/ReactiveCocoa/RACUnit.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACUnit.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 3/27/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /// A unit represents an empty value. 12 | /// 13 | /// It should never be necessary to create a unit yourself. Just use +defaultUnit. 14 | @interface RACUnit : NSObject 15 | 16 | /// A singleton instance. 17 | + (RACUnit *)defaultUnit; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/ReactiveCocoa/ReactiveCocoa/RACValueTransformer.h: -------------------------------------------------------------------------------- 1 | // 2 | // RACValueTransformer.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Abernathy on 3/6/12. 6 | // Copyright (c) 2012 GitHub, Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | // A private block based transformer. 12 | @interface RACValueTransformer : NSValueTransformer 13 | 14 | + (instancetype)transformerWithBlock:(id (^)(id value))block; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/ReactiveCocoa/ReactiveCocoa/UIGestureRecognizer+RACSignalSupport.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIGestureRecognizer+RACSignalSupport.h 3 | // ReactiveCocoa 4 | // 5 | // Created by Josh Vera on 5/5/13. 6 | // Copyright (c) 2013 GitHub. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class RACSignal; 12 | 13 | @interface UIGestureRecognizer (RACSignalSupport) 14 | 15 | /// Returns a signal that sends the receiver when its gesture occurs. 16 | - (RACSignal *)rac_gestureSignal; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Target Support Files/AMSlideMenu/AMSlideMenu-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "AMSlideMenu.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/AMSlideMenu" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AMSlideMenu" "${PODS_ROOT}/Headers/Public/PNChart" "${PODS_ROOT}/Headers/Public/ReactiveCocoa" "${PODS_ROOT}/Headers/Public/UICountingLabel" 4 | PODS_ROOT = ${SRCROOT} 5 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Target Support Files/AMSlideMenu/AMSlideMenu-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AMSlideMenu : NSObject 3 | @end 4 | @implementation PodsDummy_AMSlideMenu 5 | @end 6 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Target Support Files/AMSlideMenu/AMSlideMenu-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Target Support Files/AMSlideMenu/AMSlideMenu.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/Pods/Target Support Files/AMSlideMenu/AMSlideMenu.xcconfig -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Target Support Files/PNChart/PNChart-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "PNChart.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/PNChart" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AMSlideMenu" "${PODS_ROOT}/Headers/Public/PNChart" "${PODS_ROOT}/Headers/Public/ReactiveCocoa" "${PODS_ROOT}/Headers/Public/UICountingLabel" 4 | OTHER_LDFLAGS = ${PNCHART_OTHER_LDFLAGS} 5 | PODS_ROOT = ${SRCROOT} 6 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Target Support Files/PNChart/PNChart-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_PNChart : NSObject 3 | @end 4 | @implementation PodsDummy_PNChart 5 | @end 6 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Target Support Files/PNChart/PNChart-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Target Support Files/PNChart/PNChart.xcconfig: -------------------------------------------------------------------------------- 1 | PNCHART_OTHER_LDFLAGS = -framework "CoreGraphics" -framework "Foundation" -framework "QuartzCore" -framework "UIKit" -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Target Support Files/Pods-sensmove/Pods-sensmove-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_sensmove : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_sensmove 5 | @end 6 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Target Support Files/Pods-sensmoveTests/Pods-sensmoveTests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_sensmoveTests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_sensmoveTests 5 | @end 6 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Target Support Files/ReactiveCocoa/ReactiveCocoa-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ReactiveCocoa.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/ReactiveCocoa" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AMSlideMenu" "${PODS_ROOT}/Headers/Public/PNChart" "${PODS_ROOT}/Headers/Public/ReactiveCocoa" "${PODS_ROOT}/Headers/Public/UICountingLabel" 4 | PODS_ROOT = ${SRCROOT} 5 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Target Support Files/ReactiveCocoa/ReactiveCocoa-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_ReactiveCocoa : NSObject 3 | @end 4 | @implementation PodsDummy_ReactiveCocoa 5 | @end 6 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Target Support Files/ReactiveCocoa/ReactiveCocoa-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Target Support Files/ReactiveCocoa/ReactiveCocoa.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/Pods/Target Support Files/ReactiveCocoa/ReactiveCocoa.xcconfig -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Target Support Files/UICountingLabel/UICountingLabel-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "UICountingLabel.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/UICountingLabel" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AMSlideMenu" "${PODS_ROOT}/Headers/Public/PNChart" "${PODS_ROOT}/Headers/Public/ReactiveCocoa" "${PODS_ROOT}/Headers/Public/UICountingLabel" 4 | PODS_ROOT = ${SRCROOT} 5 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Target Support Files/UICountingLabel/UICountingLabel-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_UICountingLabel : NSObject 3 | @end 4 | @implementation PodsDummy_UICountingLabel 5 | @end 6 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Target Support Files/UICountingLabel/UICountingLabel-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /ios_development/sensmove/Pods/Target Support Files/UICountingLabel/UICountingLabel.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/Pods/Target Support Files/UICountingLabel/UICountingLabel.xcconfig -------------------------------------------------------------------------------- /ios_development/sensmove/build/libPods-sensmove-AMSlideMenu.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/build/libPods-sensmove-AMSlideMenu.a -------------------------------------------------------------------------------- /ios_development/sensmove/build/libPods-sensmove-ReactiveCocoa.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/build/libPods-sensmove-ReactiveCocoa.a -------------------------------------------------------------------------------- /ios_development/sensmove/build/libPods-sensmove.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/build/libPods-sensmove.a -------------------------------------------------------------------------------- /ios_development/sensmove/build/libPods-sensmoveTests-AMSlideMenu.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/build/libPods-sensmoveTests-AMSlideMenu.a -------------------------------------------------------------------------------- /ios_development/sensmove/build/libPods-sensmoveTests.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/build/libPods-sensmoveTests.a -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/AppIcon.appiconset/120x120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/Images.xcassets/AppIcon.appiconset/120x120-1.png -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/AppIcon.appiconset/120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/Images.xcassets/AppIcon.appiconset/120x120.png -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/AppIcon.appiconset/180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/Images.xcassets/AppIcon.appiconset/180x180.png -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/AppIcon.appiconset/58x58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/Images.xcassets/AppIcon.appiconset/58x58.png -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/AppIcon.appiconset/80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/Images.xcassets/AppIcon.appiconset/80x80.png -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/AppIcon.appiconset/87x87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/Images.xcassets/AppIcon.appiconset/87x87.png -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/LaunchImage.launchimage/Default-568h@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/Images.xcassets/LaunchImage.launchimage/Default-568h@2x-1.png -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/Images.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/LaunchImage.launchimage/Default-Portrait-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/Images.xcassets/LaunchImage.launchimage/Default-Portrait-736h@3x.png -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/Images.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/LaunchImage.launchimage/Default@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/Images.xcassets/LaunchImage.launchimage/Default@2x-1.png -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/Images.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/home.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "home.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/home.imageset/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/Images.xcassets/home.imageset/home.png -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/logo_without_strap.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "logo_without_strap.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/logo_without_strap.imageset/logo_without_strap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/Images.xcassets/logo_without_strap.imageset/logo_without_strap.png -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/patsy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "patsy.jpg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/patsy.imageset/patsy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/Images.xcassets/patsy.imageset/patsy.jpg -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/profile.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "profile.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/profile.imageset/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/Images.xcassets/profile.imageset/profile.png -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/sensmove.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "sensmove.jpg" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/sensmove.imageset/sensmove.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/Images.xcassets/sensmove.imageset/sensmove.jpg -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/sessions.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "sessions.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/Images.xcassets/sessions.imageset/sessions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/Images.xcassets/sessions.imageset/sessions.png -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/RACObserve.swift: -------------------------------------------------------------------------------- 1 | // 2 | // RACObserve.swift 3 | // ReactiveSwiftFlickrSearch 4 | // 5 | // Created by Colin Eberhardt on 15/07/2014. 6 | // Copyright (c) 2014 Colin Eberhardt. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | // replaces the RACObserve macro 12 | func RACObserve(target: NSObject!, keyPath: String) -> RACSignal { 13 | return target.rac_valuesForKeyPath(keyPath, observer: target) 14 | } -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/TPKeyboardAvoidingScrollView.h: -------------------------------------------------------------------------------- 1 | // 2 | // TPKeyboardAvoidingScrollView.h 3 | // 4 | // Created by Michael Tyson on 30/09/2013. 5 | // Copyright 2013 A Tasty Pixel. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "UIScrollView+TPKeyboardAvoidingAdditions.h" 10 | 11 | @interface TPKeyboardAvoidingScrollView : UIScrollView 12 | - (void)contentSizeToFit; 13 | - (BOOL)focusNextTextField; 14 | - (void)scrollToActiveTextField; 15 | @end 16 | -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/menu.png -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/menu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/menu@2x.png -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/sensmove-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Use this file to import your target's public headers that you would like to expose to Swift. 3 | // 4 | 5 | #import 6 | #import 7 | -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/sensmove.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | _XCCurrentVersionName 6 | sensmove.xcdatamodel 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/sensmove.xcdatamodeld/sensmove.xcdatamodel/contents: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/simpleMenuButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/simpleMenuButton.png -------------------------------------------------------------------------------- /ios_development/sensmove/sensmove/simpleMenuButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmove/simpleMenuButton@2x.png -------------------------------------------------------------------------------- /ios_development/sensmove/sensmoveTests/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmoveTests/Roboto-Light.ttf -------------------------------------------------------------------------------- /ios_development/sensmove/sensmoveTests/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmoveTests/Roboto-Medium.ttf -------------------------------------------------------------------------------- /ios_development/sensmove/sensmoveTests/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmoveTests/Roboto-Regular.ttf -------------------------------------------------------------------------------- /ios_development/sensmove/sensmoveTests/varela round.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex3165/sensmove/6a77793176d68f94990c0b1e5d08281b1ab0a8ab/ios_development/sensmove/sensmoveTests/varela round.otf --------------------------------------------------------------------------------