Skip to content

Commit

Permalink
Make LocationCapturer and SensorCapturer implementation public
Browse files Browse the repository at this point in the history
  • Loading branch information
muthenberg committed Nov 28, 2024
1 parent adf0831 commit e1d905c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public protocol LocationCapturer {

- Author: Klemens Muthmann
*/
class SmartphoneLocationCapturer: NSObject, LocationCapturer {
public class SmartphoneLocationCapturer: NSObject, LocationCapturer {
// MARK: Properties
/// This is the maximum time between two location updates allowed before the service assumes that it does not have a valid location fix anymore.
private static let maxAllowedTimeBetweenLocationUpdates = TimeInterval(2.0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public protocol SensorCapturer {

- Author: Klemens Muthmann
*/
class SmartphoneSensorCapturer: SensorCapturer {
public class SmartphoneSensorCapturer: SensorCapturer {

// MARK: - Properties
/// The timestamp of the previously captured acceleration. This is stored to make sure all accelerations are captured in increasing order.
Expand Down

0 comments on commit e1d905c

Please sign in to comment.