-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4cd8666
commit 3b6f0ae
Showing
15 changed files
with
462 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
Sources/DataCapturing/Model/Generated/AltitudeMO+CoreDataClass.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// | ||
// AltitudeMO+CoreDataClass.swift | ||
// DataCapturing | ||
// | ||
// Created by Klemens Muthmann on 09.10.24. | ||
// | ||
// | ||
|
||
import Foundation | ||
import CoreData | ||
|
||
@objc(AltitudeMO) | ||
public class AltitudeMO: NSManagedObject { | ||
|
||
} |
23 changes: 23 additions & 0 deletions
23
Sources/DataCapturing/Model/Generated/AltitudeMO+CoreDataProperties.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// | ||
// AltitudeMO+CoreDataProperties.swift | ||
// DataCapturing | ||
// | ||
// Created by Klemens Muthmann on 09.10.24. | ||
// | ||
// | ||
|
||
import Foundation | ||
import CoreData | ||
|
||
|
||
extension AltitudeMO { | ||
|
||
@nonobjc public class func fetchRequest() -> NSFetchRequest<AltitudeMO> { | ||
return NSFetchRequest<AltitudeMO>(entityName: "Altitude") | ||
} | ||
|
||
@NSManaged public var altitude: Double | ||
@NSManaged public var time: Date? | ||
@NSManaged public var track: TrackMO? | ||
|
||
} |
15 changes: 15 additions & 0 deletions
15
Sources/DataCapturing/Model/Generated/EventMO+CoreDataClass.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// | ||
// EventMO+CoreDataClass.swift | ||
// DataCapturing | ||
// | ||
// Created by Klemens Muthmann on 09.10.24. | ||
// | ||
// | ||
|
||
import Foundation | ||
import CoreData | ||
|
||
@objc(EventMO) | ||
public class EventMO: NSManagedObject { | ||
|
||
} |
24 changes: 24 additions & 0 deletions
24
Sources/DataCapturing/Model/Generated/EventMO+CoreDataProperties.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// | ||
// EventMO+CoreDataProperties.swift | ||
// DataCapturing | ||
// | ||
// Created by Klemens Muthmann on 09.10.24. | ||
// | ||
// | ||
|
||
import Foundation | ||
import CoreData | ||
|
||
|
||
extension EventMO { | ||
|
||
@nonobjc public class func fetchRequest() -> NSFetchRequest<EventMO> { | ||
return NSFetchRequest<EventMO>(entityName: "Event") | ||
} | ||
|
||
@NSManaged public var time: Date? | ||
@NSManaged public var type: Int16 | ||
@NSManaged public var value: String? | ||
@NSManaged public var measurement: MeasurementMO? | ||
|
||
} |
15 changes: 15 additions & 0 deletions
15
Sources/DataCapturing/Model/Generated/GeoLocationMO+CoreDataClass.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// | ||
// GeoLocationMO+CoreDataClass.swift | ||
// DataCapturing | ||
// | ||
// Created by Klemens Muthmann on 09.10.24. | ||
// | ||
// | ||
|
||
import Foundation | ||
import CoreData | ||
|
||
@objc(GeoLocationMO) | ||
public class GeoLocationMO: NSManagedObject { | ||
|
||
} |
28 changes: 28 additions & 0 deletions
28
Sources/DataCapturing/Model/Generated/GeoLocationMO+CoreDataProperties.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// | ||
// GeoLocationMO+CoreDataProperties.swift | ||
// DataCapturing | ||
// | ||
// Created by Klemens Muthmann on 09.10.24. | ||
// | ||
// | ||
|
||
import Foundation | ||
import CoreData | ||
|
||
|
||
extension GeoLocationMO { | ||
|
||
@nonobjc public class func fetchRequest() -> NSFetchRequest<GeoLocationMO> { | ||
return NSFetchRequest<GeoLocationMO>(entityName: "GeoLocation") | ||
} | ||
|
||
@NSManaged public var accuracy: Double | ||
@NSManaged public var altitude: Double | ||
@NSManaged public var lat: Double | ||
@NSManaged public var lon: Double | ||
@NSManaged public var speed: Double | ||
@NSManaged public var time: Date? | ||
@NSManaged public var verticalAccuracy: Double | ||
@NSManaged public var track: TrackMO? | ||
|
||
} |
15 changes: 15 additions & 0 deletions
15
Sources/DataCapturing/Model/Generated/MeasurementMO+CoreDataClass.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// | ||
// MeasurementMO+CoreDataClass.swift | ||
// DataCapturing | ||
// | ||
// Created by Klemens Muthmann on 09.10.24. | ||
// | ||
// | ||
|
||
import Foundation | ||
import CoreData | ||
|
||
@objc(MeasurementMO) | ||
public class MeasurementMO: NSManagedObject { | ||
|
||
} |
96 changes: 96 additions & 0 deletions
96
Sources/DataCapturing/Model/Generated/MeasurementMO+CoreDataProperties.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
// | ||
// MeasurementMO+CoreDataProperties.swift | ||
// DataCapturing | ||
// | ||
// Created by Klemens Muthmann on 09.10.24. | ||
// | ||
// | ||
|
||
import Foundation | ||
import CoreData | ||
|
||
|
||
extension MeasurementMO { | ||
|
||
@nonobjc public class func fetchRequest() -> NSFetchRequest<MeasurementMO> { | ||
return NSFetchRequest<MeasurementMO>(entityName: "Measurement") | ||
} | ||
|
||
@NSManaged public var identifier: Int64 | ||
@NSManaged public var synchronizable: Bool | ||
@NSManaged public var synchronized: Bool | ||
@NSManaged public var time: Date? | ||
@NSManaged public var events: NSOrderedSet? | ||
@NSManaged public var tracks: NSOrderedSet? | ||
|
||
} | ||
|
||
// MARK: Generated accessors for events | ||
extension MeasurementMO { | ||
|
||
@objc(insertObject:inEventsAtIndex:) | ||
@NSManaged public func insertIntoEvents(_ value: EventMO, at idx: Int) | ||
|
||
@objc(removeObjectFromEventsAtIndex:) | ||
@NSManaged public func removeFromEvents(at idx: Int) | ||
|
||
@objc(insertEvents:atIndexes:) | ||
@NSManaged public func insertIntoEvents(_ values: [EventMO], at indexes: NSIndexSet) | ||
|
||
@objc(removeEventsAtIndexes:) | ||
@NSManaged public func removeFromEvents(at indexes: NSIndexSet) | ||
|
||
@objc(replaceObjectInEventsAtIndex:withObject:) | ||
@NSManaged public func replaceEvents(at idx: Int, with value: EventMO) | ||
|
||
@objc(replaceEventsAtIndexes:withEvents:) | ||
@NSManaged public func replaceEvents(at indexes: NSIndexSet, with values: [EventMO]) | ||
|
||
@objc(addEventsObject:) | ||
@NSManaged public func addToEvents(_ value: EventMO) | ||
|
||
@objc(removeEventsObject:) | ||
@NSManaged public func removeFromEvents(_ value: EventMO) | ||
|
||
@objc(addEvents:) | ||
@NSManaged public func addToEvents(_ values: NSOrderedSet) | ||
|
||
@objc(removeEvents:) | ||
@NSManaged public func removeFromEvents(_ values: NSOrderedSet) | ||
|
||
} | ||
|
||
// MARK: Generated accessors for tracks | ||
extension MeasurementMO { | ||
|
||
@objc(insertObject:inTracksAtIndex:) | ||
@NSManaged public func insertIntoTracks(_ value: TrackMO, at idx: Int) | ||
|
||
@objc(removeObjectFromTracksAtIndex:) | ||
@NSManaged public func removeFromTracks(at idx: Int) | ||
|
||
@objc(insertTracks:atIndexes:) | ||
@NSManaged public func insertIntoTracks(_ values: [TrackMO], at indexes: NSIndexSet) | ||
|
||
@objc(removeTracksAtIndexes:) | ||
@NSManaged public func removeFromTracks(at indexes: NSIndexSet) | ||
|
||
@objc(replaceObjectInTracksAtIndex:withObject:) | ||
@NSManaged public func replaceTracks(at idx: Int, with value: TrackMO) | ||
|
||
@objc(replaceTracksAtIndexes:withTracks:) | ||
@NSManaged public func replaceTracks(at indexes: NSIndexSet, with values: [TrackMO]) | ||
|
||
@objc(addTracksObject:) | ||
@NSManaged public func addToTracks(_ value: TrackMO) | ||
|
||
@objc(removeTracksObject:) | ||
@NSManaged public func removeFromTracks(_ value: TrackMO) | ||
|
||
@objc(addTracks:) | ||
@NSManaged public func addToTracks(_ values: NSOrderedSet) | ||
|
||
@objc(removeTracks:) | ||
@NSManaged public func removeFromTracks(_ values: NSOrderedSet) | ||
|
||
} |
15 changes: 15 additions & 0 deletions
15
Sources/DataCapturing/Model/Generated/TrackMO+CoreDataClass.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// | ||
// TrackMO+CoreDataClass.swift | ||
// DataCapturing | ||
// | ||
// Created by Klemens Muthmann on 09.10.24. | ||
// | ||
// | ||
|
||
import Foundation | ||
import CoreData | ||
|
||
@objc(TrackMO) | ||
public class TrackMO: NSManagedObject { | ||
|
||
} |
Oops, something went wrong.