Skip to content

Commit

Permalink
make Waypoint field public
Browse files Browse the repository at this point in the history
  • Loading branch information
ekurutepe committed Mar 31, 2019
1 parent 088669f commit 959860a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Iguazu.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = "Iguazu"
s.version = "1.4.1"
s.version = "1.4.2"
s.summary = "An aviation file format parser written in Swift"
s.description = <<-DESC
Iguazu is a new project and still work in progress. The goal is to have a Swift framework with support for various popular aviation file formats to facilitate development of apps for pilots on the iOS platform.
Expand Down
10 changes: 5 additions & 5 deletions Iguazu/CUP/Waypoint.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
import Foundation

public struct Waypoint {
let title: String
let code: String
let latitude: Double
let longitude: Double
let elevation: Double
public let title: String
public let code: String
public let latitude: Double
public let longitude: Double
public let elevation: Double
}

public extension Waypoint {
Expand Down

0 comments on commit 959860a

Please sign in to comment.