Constraint.swift 280 B

1234567891011121314
  1. //
  2. // Constraint.swift
  3. // ExpressiveLayout
  4. //
  5. // Created by Jonas Budelmann on 5/06/14.
  6. // Copyright (c) 2014 Jonas Budelmann. All rights reserved.
  7. //
  8. import Foundation
  9. protocol Constraint {
  10. func add(other: Any) -> Constraint
  11. func equalTo(other: Any) -> Constraint
  12. }